all repos — site @ ad301757b66840fb19004c031402c9b133f7b95b

source for my site, found at icyphox.sh

templates/wiki.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
<!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> 
    <div class="container">
      <div class="pull-left">
        <div class="content">
          <header>
            {{ .Cfg.Header }}
          </header>
          <main>
            {{ .Fm.Body }}
          </main>
       </div>
        <footer>
        {{ .Cfg.Footer }}
      </footer>
      </div>
    </div>
  </body>
</html>