43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| ---
 | |
| layout: compress
 | |
| ---
 | |
| <!doctype html>
 | |
| <html lang="en-gb">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width">
 | |
|     <meta http-equiv="X-UA-Compatible" content="ie=edge">
 | |
|     <link rel="stylesheet" href="/assets/css/post.css">
 | |
|     <link rel="icon" href="/assets/favicon.ico">
 | |
|     <title>{{ site.title }}</title>
 | |
|     {% seo %}
 | |
| </head>
 | |
| <body>
 | |
| <header>
 | |
|     <div class="container title-container">
 | |
|         <h1 class="logo">shrapnelnet</h1>
 | |
|     </div>
 | |
| </header>
 | |
| <main>
 | |
|     <div class="container">
 | |
|         <article>
 | |
|             <div id="content" class="use-ibm">
 | |
|                 <div id="title">
 | |
|                     <h2>{{ page.title }}</h2>
 | |
|                 </div>
 | |
|                 <div id="date">
 | |
|                     <p>{{ page.date | date: "%a, %d %b %Y, %r" }}</p>
 | |
|                 </div>
 | |
|                 <sub>by tyler, yes, the tyler!</sub>
 | |
|                 <div class="flex-newline"></div>
 | |
|                 <img src="/assets/graphics/duckzone.gif" alt="waddling animated ducks" class="ducks"/>
 | |
|                 {{ content }}
 | |
|             </div>
 | |
|         </article>
 | |
|         <a id="generate-path" href="/">back home!</a>
 | |
|     </div>
 | |
| </main>
 | |
| <script src="/assets/js/get-correct-path.js"></script>
 | |
| <script src="/assets/js/width-hack.js"></script>
 | |
| </body>
 | |
| </html> |