23 lines
		
	
	
		
			651 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			651 B
		
	
	
	
		
			HTML
		
	
	
	
<!doctype html>
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <meta charset="utf-8" />
 | 
						|
    <meta http-equiv="x-ua-compatible" content="ie=edge" />
 | 
						|
    <meta name="description" content="" />
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | 
						|
 | 
						|
    <title>{% block title %}{% endblock %} - {{ config.get("name") }}</title>
 | 
						|
 | 
						|
    <link
 | 
						|
      rel="stylesheet"
 | 
						|
      href="{{ url_for('static', filename='style/main.css') }}"
 | 
						|
    />
 | 
						|
    <link rel="icon" href="{{ config.get("favicon") }}">
 | 
						|
 | 
						|
    {# <script src="{{ url_for('static', filename='lib/htmx.min.js') }}"></script> #}
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    {% block body %}{% endblock %}
 | 
						|
  </body>
 | 
						|
</html>
 |