42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			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 %}
 | |
| 
 | |
|   <footer class="page-footer">
 | |
|     <p>
 | |
|       Last generated on
 | |
|       <time class="underline" datetime="{{ today }}">{{- today -}}</time>.
 | |
|     </p>
 | |
| 
 | |
|     <p>
 | |
|       © Code
 | |
|       <a href="https://git.bauke.xyz/Bauke/tildes-statistics">AGPL-3.0-or-later</a>,
 | |
|       charts & data
 | |
|       <a href="https://creativecommons.org/licenses/by-nc/4.0/">CC BY-NC 4.0</a>.
 | |
|     </p>
 | |
| 
 | |
|     <p class="bold">
 | |
|       Consider joining <a href="{{ base_url }}">Tildes</a>, a non-profit
 | |
|       community site driven by its users' interests.
 | |
|     </p>
 | |
|   </footer>
 | |
| 
 | |
|   {{ extra_body_html|safe }}
 | |
| </body>
 | |
| 
 | |
| </html>
 |