all repos — site @ 26b5de36be6ad0af258e8729f401056555dc2ee6

source for my site, found at icyphox.sh

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="icon" type="image/png" sizes="16x16" href="/favicon.png">
23    <meta name="theme-color" content="#ffffff">
24  </head>
25  <title>
26    {{ .Fm.Title }}
27  </title>
28  <body> 
29    <div class="container">
30      <div class="pull-left">
31        <div class="content">
32          <header>
33            {{ .Cfg.Header }}
34          </header>
35          <article align="left">
36            <section class="post-date">
37              {{ .Fm.Date }}
38            </section>
39
40            <h1>{{ .Fm.Title }}</h1>
41            <h2 class="subtitle">{{ .Fm.Subtitle }}</h2>
42            {{ .Fm.Body }} 
43          </article>
44          <p class="muted">Questions or comments? 
45          Send an email to 
46          <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>
47        </div>
48        <footer>
49          {{ .Cfg.Footer }}
50        </footer>
51      </div>
52    </div>
53  </body>
54</html>