all repos — site @ abbb0b39cd6b6ccacca57326d3e6ce416a1cf3fc

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,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  <main> 
19    <header>
20      {{ .Cfg.Header }}
21    </header>
22    <article align="left">
23
24      <h1>{{ .Fm.Title }}</h1>
25      <!--      <h2 class="subtitle">{{ .Fm.Subtitle }}</h2>--!>
26      {{ .Fm.Body }}
27
28      <!--
29      <section class="post-date">
30        <em>last updated</em>: {{ .Fm.Date }}
31        </section>--!>
32
33    </article>
34  </main>
35  <footer>
36    {{ .Cfg.Footer }}
37  </footer>
38</body>
39
40</html>