blob: 2d3f92e357cafb95858346c5c7fad65abf8f6340 (
plain) (
blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<!doctype html>
<html lang="en">
<head>
<title>{Page_Title}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="author" content="My Name">
<meta name="description" content="{Page_Description}">
<link rel="canonical" href="{Canonical_URL}">
<link rel="icon" href="/favicon.ico">
<link rel="stylesheet" href="/static/app.css">
{Page_Extras}
</head>
<body>
<main id="main">
<nav class="links">
<span>[<a href="/">Home</a>]</span>
<span>[<a href="/categories/">Categories</a>]</span>
<span>[<a href="/comments/">Comments</a>]</span>
<span>[<a href="/rss.xml">RSS</a>]</span>
</nav>
{Content_Column}
{User_Comments}
</main>
<footer>
<h2>Contact</h2>
<p>Have questions? Email me <br>
at <a href="mailto:hello@example.com">hello@example.com</a>,<br>
message me on <a rel="me" href="https://floss.social/@example">Mastodon</a>,<br>
or open an issue on <a href="https://github.com/WittsEnd2/Example_Repo">GitHub</a>.</p>
<p>Copyright © 20xx - {Current_Year}</p>
</footer>
</body>
</html>
|