all repos — site @ bd0f8da1a4477e6ef8031ec3a572dcb623b97e17

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      <section class="post-date">
29        <em>last updated</em>: {{ .Fm.Date }}
30      </section>
31
32    </article>
33  </main>
34  <footer>
35    {{ .Cfg.Footer }}
36  </footer>
37</body>
38
39</html>