all repos — site @ b5c4a081f04dc38d8bbae4d1abecfb2dd26fde02

source for my site, found at icyphox.sh

templates/page.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">
 8    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
 9    <meta charset="UTF-8">
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
22    <link rel="icon" type="image/png" sizes="16x16" href="/favicon.png">
23    <meta name="theme-color" content="#ffffff">
24  </head>
25  <title>
26    {{ .Fm.Title }}
27  </title>
28  <body> 
29    <div class="container"> 
30      <div class="pull-left">
31        <div class="content">
32          <header>
33            {{ .Cfg.Header }}
34          </header>
35          <article align="left">
36
37            <h1>{{ .Fm.Title }}</h1>
38            <h2 class="subtitle">{{ .Fm.Subtitle }}</h2>
39            {{ .Fm.Body }} 
40
41            <section class="post-date">
42              <em>last updated</em>: {{ .Fm.Date }}
43            </section>
44
45          </article>
46        </div>
47        <footer>
48          {{ .Cfg.Footer }}
49        </footer>
50      </div>
51    </div>
52  </body>
53</html>