21 lines
		
	
	
		
			560 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			560 B
		
	
	
	
		
			HTML
		
	
	
	
| <!doctype html>
 | |
| <html>
 | |
|   <head>
 | |
|     <title>{{ page.title }}</title>
 | |
|     <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
 | |
|     <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|   </head>
 | |
|   <body>
 | |
|     <div class="header">
 | |
|       <div class="inner">
 | |
|         <h1>
 | |
|           {{ page.title }}
 | |
|         </h1>
 | |
|       </div>
 | |
|     </div>
 | |
|     <div class="page">
 | |
|       {% block body %}{% endblock %}
 | |
|     </div>
 | |
|   </body>
 | |
| </html> |