all repos — site @ 3aa005439b166d97655373f95265fa2dd1e89be4

source for my site, found at icyphox.sh

templates/text.html (view raw)

 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>
    <link rel="stylesheet" href="/static/style.css" type="text/css">
    <link rel="alternate" type="application/rss+xml" title="RSS" href="https://icyphox.sh/blog/feed.xml"> 
    <meta name="description" content="{{ .Fm.Subtitle }}">
    <meta name="viewport" content="initial-scale=1,width">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta charset="UTF-8">
    <meta name="HandheldFriendly" content="true">
    <link rel="icon" type="image/png" sizes="16x16" href="/favicon.png">
    <meta name="theme-color" content="#ffffff">
  </head>
  <title>
    {{ .Fm.Title }}
  </title>
  <body>
  <main> 
    <header>
      {{ .Cfg.Header }}
    </header>
    <article align="left">
      <section class="post-date">
        {{ .Fm.Date }}
      </section>

      <h1>{{ .Fm.Title }}</h1>
      <h2 class="subtitle">{{ .Fm.Subtitle }}</h2>
      {{ .Fm.Body }} 
    </article>
    <p class="muted">Questions or comments? 
    Send an email to 
    <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>
  </main>
  <footer>
    {{ .Cfg.Footer }}
  </footer>
</body>

</html>