all repos — site @ cdebea313f281dd2f9dcaaa25a56fcd73144f006

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.URL }}
27  </title>
28
29  <body> 
30    <section class="container"> 
31      <div class="pull-left">
32        <div class="content">
33      <header>
34        {{ .Cfg.Header }}
35      </header>
36      <article style="clear: both" align="left">
37        <small style="float: right">
38          updated: {{ .Fm.Date }}
39        </small>
40
41        <h1>{{ .Fm.Title }}</h1>
42        <h2 class="subtitle">{{ .Fm.Subtitle }}</h2>
43        {{ .Fm.Body }} 
44      </article>
45        </div>
46        <footer>
47          {{ .Cfg.Footer }}
48        </footer>
49      </div>
50    </section>
51  </body>
52</html>