all repos — site @ 8e5b4bc1843064c6f1b4713817f880d69fdd8dc4

source for my site, found at icyphox.sh

templates/page.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">

      <h1>{{ .Fm.Title }}</h1>
      <!--      <h2 class="subtitle">{{ .Fm.Subtitle }}</h2>--!>
      {{ .Fm.Body }}

      <!--
      <section class="post-date">
        <em>last updated</em>: {{ .Fm.Date }}
        </section>--!>

    </article>
  </main>
  <footer>
    {{ .Cfg.Footer }}
  </footer>
</body>

</html>