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">
8 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
9 <meta charset="UTF-8">
10 <meta name="HandheldFriendly" content="true">
11 <meta name="twitter:card" content="summary_large_image">
12 <meta name="twitter:site" content="@icyphox">
13 <meta name="twitter:title" content="{{ .Fm.Title }}">
14 <meta name="twitter:description" content="{{ .Fm.Subtitle }}">
15 <meta name="twitter:image" content="/static/icyphox.png">
16 <meta property="og:title" content="{{ .Fm.Title }}">
17 <meta property="og:type" content="website">
18 <meta property="og:description" content="{{ .Fm.Subtitle }}">
19 <meta property="og:url" content="https://icyphox.sh">
20 <meta property="og:image" content="/static/icyphox.png">
21
22 <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
23 <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
24 <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
25 <link rel="manifest" href="/site.webmanifest">
26 <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000">
27 <meta name="theme-color" content="#ffffff">
28</head>
29 <title>
30 {{ .Fm.Title }}
31 </title>
32 <body>
33 <div class="container">
34 <div class="pull-left">
35 <div class="content">
36 <header>
37 {{ .Cfg.Header }}
38 </header>
39 <!--<section style="float: right">
40 view in <a href="/txt/{{ .Fm.URL }}.txt">plain-text</a>
41 </section>-->
42 <section style="float: left">
43 {{ .Fm.Date }}
44 </section>
45 <article style="clear: both" align="left">
46 <h1>{{ .Fm.Title }}</h1>
47 <h2 class="subtitle">{{ .Fm.Subtitle }}</h2>
48 {{ .Fm.Body }}
49 </article>
50 <p class="muted">Questions or comments?
51 Send an email to
52 <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>
53 </div>
54 <footer>
55 {{ .Cfg.Footer }}
56 </footer>
57 </div>
58 </div>
59 </body>
60</html>