all repos — site @ e56c542ce5bbdc427a3397d3c36834d83bf885dd

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="{{ 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="#ffffff" 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="{{ title }}">
15  <meta name="twitter:description" content="{{ subtitle }}">
16  <meta name="twitter:image" content="/static/icyphox.png">
17  <meta property="og:title" content="{{ title }}">
18  <meta property="og:type" content="website">
19  <meta property="og:description" content="{{ subtitle }}">
20  <meta property="og:url" content="https://icyphox.sh">
21  <meta property="og:image" content="/static/icyphox.png">
22
23  <title>
24    {{ title }}
25  </title>
26  <body> 
27    <section class="container"> 
28      <div class="pull-left">
29        <div class="content">
30          {{ body }}
31          <table>
32            <tbody>
33          {% for p in posts %}
34            <tr>
35              <td align="left"><a href="/blog/{{ p.url }}">{{ p.title }}</a></td>
36              <td align="right">{{ p.date }}</td>
37            </tr>
38          {% endfor %}
39          </table>
40        </div>
41      </div>
42      <div class="pull-right">
43        {{ footer }}
44      </div>
45    </section>
46  </body>
47</html>