20 lines
		
	
	
		
			680 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			680 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
|   <title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
 | |
|   {% include meta.html %}
 | |
|   <link href="/css/main.css" media="screen, projection" rel="stylesheet" type="text/css">
 | |
|   <link href="/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml">
 | |
|   <script defer data-domain="walkah.net" src="https://plausible.io/js/script.js"></script>
 | |
| </head>
 | |
| <body class="bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
 | |
|   <div class="container max-w-2xl mb-24 mt-8 mx-auto">
 | |
|     <div class="px-5 md:px-8">
 | |
|       <main id="main">
 | |
|           {{ content }}
 | |
|       </main>  
 | |
|     </div>
 | |
|   </div>
 | |
| </body>
 | |
| </html>
 |