-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathlayout.html
More file actions
26 lines (25 loc) · 904 Bytes
/
layout.html
File metadata and controls
26 lines (25 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="{{title}} | The personal blog of Veit Heller">
<meta name="author" content="Veit Heller">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{title}} | Veit's Blog</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<script defer data-domain="blog.veitheller.de" src="https://plausible.io/js/script.tagged-events.outbound-links.js"></script>
</head>
<body lang="en">
<div class="aside">
<p><a href="/">Veit's Blog</a></p>
<h1>{{title}}</h1>
<p class="date">{{date}}</p>
</div>
<div class="content">
{{{post}}}
<div class="footer">
<p>Want to go back to the <a href="/">list of posts</a>?</p>
</div>
</div>
</body>
</html>