all repos — site @ 2551126786681235d5487e9571129fa3caac85bd

source for my site, found at icyphox.sh

templates/page.html (view raw)

 1<!DOCTYPE html>
 2<html lang=en>
 3  <link rel="stylesheet" href="/static/style.css" type="text/css">
 4  <link rel="shortcut icon" type="images/x-icon" href="/static/favicon.ico">
 5  <meta name="description" content="{{ .Fm.Subtitle }}">
 6  <meta charset="UTF-8">
 7  <meta name="viewport" content="initial-scale=1">
 8  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
 9  <meta content="#222" name="theme-color">
10  <meta name="HandheldFriendly" content="true">
11  <meta name="twitter:card" content="summary_large_image">
12  <meta name="twitter:site" content="@icyphox">
13  <meta name="twitter:title" content="{{ .Fm.Title }}">
14  <meta name="twitter:description" content="{{ .Fm.Subtitle }}">
15  <meta name="twitter:image" content="/static/icyphox.png">
16  <meta property="og:title" content="{{ .Fm.Title }}">
17  <meta property="og:type" content="website">
18  <meta property="og:description" content="{{ .Fm.Subtitle }}">
19  <meta property="og:url" content="https://icyphox.sh">
20  <meta property="og:image" content="/static/icyphox.png">
21  <title>
22    {{ .Fm.Title }}
23  </title>
24
25  <body> 
26    <section class="container"> 
27
28      <div class="pull-left">
29        <div class="content">
30
31      <header>
32        {{ .Cfg.Header }}
33      </header>
34
35      <article>
36        {{ .Fm.Body }} 
37      </article>
38        </div>
39        <footer>
40          {{ .Cfg.Footer }}
41        </footer>
42      </div>
43    </section>
44  </body>
45</html>