all repos — site @ 19809279de2c0becb80979379676748d1e13523d

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="32x32" href="/favicon-32x32.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          <!--<section style="float: right">
36            view in <a href="/txt/{{ .Fm.URL }}.txt">plain-text</a>
37          </section>-->
38          <section class="post-date">
39            {{ .Fm.Date }}
40          </section>
41          <article style="clear: both" align="left">
42            <h1>{{ .Fm.Title }}</h1>
43            <h2 class="subtitle">{{ .Fm.Subtitle }}</h2>
44            {{ .Fm.Body }} 
45          </article>
46          <p class="muted">Questions or comments? 
47          Send an email to 
48          <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>
49        </div>
50        <footer>
51        {{ .Cfg.Footer }}
52      </footer>
53      </div>
54    </div>
55  </body>
56</html>