all repos — site @ 26b5de36be6ad0af258e8729f401056555dc2ee6

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  <meta name="viewport" content="initial-scale=1">
 6  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
 7  <meta charset="UTF-8">
 8  <meta name="HandheldFriendly" content="true">
 9  <meta name="twitter:card" content="summary_large_image">
10  <meta name="twitter:site" content="@icyphox">
11  <meta name="twitter:title" content="{{ .Fm.Title }}">
12  <meta name="twitter:image" content="/static/icyphox.png">
13  <meta property="og:title" content="{{ .Fm.Title }}">
14  <meta property="og:type" content="website">
15  <meta property="og:url" content="https://icyphox.sh">
16  <meta property="og:image" content="/static/icyphox.png">
17
18  <link rel="icon" type="image/png" sizes="16x16" href="/favicon.png">
19  <meta name="theme-color" content="#ffffff">
20</head>
21  <title>
22    {{ .Fm.Title }}
23  </title>
24  <body> 
25    <div class="container">
26      <div class="pull-left">
27        <div class="content">
28          <header>
29            {{ .Cfg.Header }}
30          </header>
31          <main>
32            {{ .Fm.Body }}
33          </main>
34       </div>
35        <footer>
36        {{ .Cfg.Footer }}
37      </footer>
38      </div>
39    </div>
40  </body>
41</html>