blog/_layouts/post.html

41 lines
1.4 KiB
HTML
Raw Normal View History

2024-04-06 21:50:20 +01:00
<!doctype html>
<html lang="en-gb">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
2024-04-06 21:50:20 +01:00
<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>
2024-04-08 16:31:09 +01:00
{% seo %}
2024-04-06 21:50:20 +01:00
</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">
<h1>{{ page.title }}</h1>
</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>
2024-04-07 22:31:25 +01:00
<a id="generate-path" href="/">back home!</a>
2024-04-06 21:50:20 +01:00
</div>
</main>
2024-04-07 23:29:28 +01:00
<script data-goatcounter="https://goatcounter.shr4pnel.com/count" async="" src="https://goatcounter.shr4pnel.com/count.js"></script>
2024-04-07 22:31:25 +01:00
<script src="/assets/js/get-correct-path.js"></script>
<script src="/assets/js/width-hack.js"></script>
2024-04-06 21:50:20 +01:00
</body>
</html>