all repos — site @ 0cf4d27338eec640a39b14a7a586d9f0792da214

source for my site, found at icyphox.sh

templates/index.html (view raw)

 1<!DOCTYPE html>
 2<html lang=en>
 3  <link rel="stylesheet" href="/static/style.css" type="text/css">
 4  <link rel="shortcut icon" type="images/x-icon" href="/static/favicon.ico">
 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 content="#222" name="theme-color">
11  <meta name="HandheldFriendly" content="true">
12  <meta name="twitter:card" content="summary_large_image">
13  <meta name="twitter:site" content="@icyphox">
14  <meta name="twitter:title" content="{{ .Fm.Title }}">
15  <meta name="twitter:description" content="{{ .Fm.Subtitle }}">
16  <meta name="twitter:image" content="/static/icyphox.png">
17  <meta property="og:title" content="{{ .Fm.Title }}">
18  <meta property="og:type" content="website">
19  <meta property="og:description" content="{{ .Fm.Subtitle }}">
20  <meta property="og:url" content="https://icyphox.sh">
21  <meta property="og:image" content="/static/icyphox.png">
22
23  <title>
24    {{ .Fm.Title }}
25  </title>
26  <body> 
27    <section class="container"> 
28      <div class="pull-left">
29        <div class="content">
30          {{ .Fm.Body }}
31          <table>
32            <tbody>
33            {{ range $_, $post := .Posts }}
34            <tr>
35              <td align="left"><a href="/blog/{{ $post.Fm.URL }}">{{ $post.Fm.Title }}</a></td>
36            </tr>
37            {{ end }}
38          </table>
39          <p><em><b>Note</b>: My current opinions may differ from those expressed in these posts.</em>
40        </div>
41      </div>
42      <div class="pull-right">
43        {{ .Cfg.Footer }}
44      </div>
45    </section>
46  </body>
47</html>