22 lines
		
	
	
		
			570 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			570 B
		
	
	
	
		
			HTML
		
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| 
 | |
| <head>
 | |
|   <meta charset="UTF-8">
 | |
|   <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|   <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|   <title>{{ page_title }}</title>
 | |
|   <link rel="shortcut icon" href="/tildes-statistics.png" type="image/png">
 | |
|   <link rel="stylesheet" href="/css/modern-normalize.css">
 | |
|   <link rel="stylesheet" href="/css/common.css">
 | |
|   {% block head %}{% endblock %}
 | |
|   {{ extra_head_html|safe }}
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|   {% block body %}{% endblock %}
 | |
|   {{ extra_body_html|safe }}
 | |
| </body>
 | |
| 
 | |
| </html>
 |