templates/text.html (view raw)
1<!DOCTYPE html>
2<html lang=en>
3 <head>
4 <link rel="stylesheet" href="/static/style.css" type="text/css">
5 <link rel="alternate" type="application/rss+xml" title="RSS" href="https://icyphox.sh/blog/feed.xml">
6 <meta name="description" content="{{ .Fm.Subtitle }}">
7 <meta name="viewport" content="initial-scale=1,width">
8 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
9 <meta charset="UTF-8">
10 <meta name="HandheldFriendly" content="true">
11 <link rel="icon" type="image/png" sizes="16x16" href="/favicon.png">
12 <meta name="theme-color" content="#ffffff">
13 </head>
14 <title>
15 {{ .Fm.Title }}
16 </title>
17 <body>
18 <main>
19 <header>
20 {{ .Cfg.Header }}
21 </header>
22 <article align="left">
23 <section class="post-date">
24 {{ .Fm.Date }}
25 </section>
26
27 <h1>{{ .Fm.Title }}</h1>
28 <h2 class="subtitle">{{ .Fm.Subtitle }}</h2>
29 {{ .Fm.Body }}
30 </article>
31 </main>
32 <footer>
33 <p class="muted">Questions or comments?
34 Send an email to
35 <a href="mailto:~icyphox/x@lists.sr.ht?Subject=Re: {{ .Fm.Title }}">~icyphox/x@lists.sr.ht</a> — my <a href="https://lists.sr.ht/~icyphox/x">public inbox</a>.</p>
36
37 {{ .Cfg.Footer }}
38 </footer>
39</body>
40
41</html>