index.html
HTML document, ASCII text
1
{% extends "_layout.html" %}
2
{% block Head %}
3
{{super()}}
4
<link rel="alternate" href="/blog/feed.rss" type="application/rss+xml" title="Steve0Greatness' Blog">
5
{% endblock %}
6
{% block title %}Homepage{% endblock %}
7
{% block content %}
8
<h1>Steve0Greatness</h1>
9
<h2 id="blog-posts">Blog Posts</h2>
10
<a href="/blog/feed.rss"><img src="/static/rss-feed-icon-96-by-96.png" width="16" height="16" alt="RSS Feed"></a>
11
<table class="blog-list">
12
<tbody>
13
{% for post in PostList %}
14
<tr class="blog-list-title-and-date">
15
<td>
16
<a href="/blog/{{post['pathname']}}">{{post["title"]}}</a>
17
</td>
18
<td>
19
<time>{{post["date"]}}</time>
20
</td>
21
</tr>
22
{% endfor %}
23
</tbody>
24
</table>
25
{% endblock %}