all repos — site @ 64dbad9da6ec44647a343a8ae46a4686720152c0

source for my site, found at icyphox.sh

templates/wiki.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,width">
 8  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
 9  <meta charset="UTF-8">
10  <meta name="HandheldFriendly" content="true">
11  <link rel="icon" type="image/png" sizes="16x16" href="/favicon.png">
12  <meta name="theme-color" content="#ffffff">
13</head>
14  <title>
15    {{ .Fm.Title }}
16  </title>
17  <body> 
18    <div class="container">
19      <div class="pull-left">
20        <div class="content">
21          <header>
22            {{ .Cfg.Header }}
23          </header>
24          <main>
25            {{ .Fm.Body }}
26          </main>
27       </div>
28        <footer>
29        {{ .Cfg.Footer }}
30      </footer>
31      </div>
32    </div>
33  </body>
34</html>