templates/_index.html (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
<!DOCTYPE html>
<html lang=en>
<link rel="stylesheet" href="/static/style.css" type="text/css">
<link rel="shortcut icon" type="images/x-icon" href="/static/favicon.ico">
<link rel="alternate" type="application/rss+xml" title="RSS" href="https://icyphox.sh/blog/feed.xml">
<meta name="description" content="{{ subtitle }}">
<meta name="viewport" content="initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta charset="UTF-8">
<meta content="#222" name="theme-color">
<meta name="HandheldFriendly" content="true">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@icyphox">
<meta name="twitter:title" content="{{ title }}">
<meta name="twitter:description" content="{{ subtitle }}">
<meta name="twitter:image" content="/static/icyphox.png">
<meta property="og:title" content="{{ title }}">
<meta property="og:type" content="website">
<meta property="og:description" content="{{ subtitle }}">
<meta property="og:url" content="https://icyphox.sh">
<meta property="og:image" content="/static/icyphox.png">
<title>
{{ title }}
</title>
<body>
<section class="container">
<div class="pull-left">
<div class="content">
{{ body }}
<table>
<tbody>
{% for p in posts %}
<tr>
<td align="left"><a href="/blog/{{ p.url }}">{{ p.title }}</a></td>
<!--<td align="right">{{ p.date }}</td>-->
</tr>
{% endfor %}
</table>
<p><em><b>Note</b>: My current opinions may differ from those expressed in these posts.</em>
</div>
</div>
<div class="pull-right">
{{ footer }}
</div>
</section>
</body>
</html>
|