all repos — site @ 281d3d538909e0821398287c37f13c013dce1521

source for my site, found at icyphox.sh

templates/text.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      <section class="post-date">
24        {{ .Fm.Date }}
25      </section>
26
27      <h1>{{ .Fm.Title }}</h1>
28      <h2 class="subtitle">{{ .Fm.Subtitle }}</h2>
29      {{ .Fm.Body }} 
30    </article>
31    <p class="muted">Questions or comments? 
32    Send an email to 
33    <a href="mailto:x@icyphox.sh?Subject=Re: {{ .Fm.Title }}">x@icyphox.sh</a>.
34  </main>
35  <footer>
36    {{ .Cfg.Footer }}
37  </footer>
38</body>
39
40</html>