A mirror of my website's source code.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 index.html

View raw Download
text/html • 783 B
HTML document, ASCII text
        
            
1
{% extends "_layout.html" %}
2
{% block title %}Homepage{% endblock %}
3
{% block content %}
4
<h2 id="blog-posts">Blog Posts</h2>
5
<table class="blog-list">
6
<tbody>
7
{% for post in PostList %}
8
<tr class="blog-list-title-and-date">
9
<td style="padding-right: 15px;">
10
<a href="/blog/{{post['pathname']}}">{{post["title"]}}</a>
11
</td>
12
<td>
13
<time>{{post["date"]}}</time>
14
</td>
15
</tr>
16
<!-- <tr class="blog-list-preview">
17
<td colspan="2">
18
<article style="max-height: 100px;overflow-y: hidden;">
19
{{post["content"]}}
20
</article>
21
</td>
22
</tr> -->
23
{% endfor %}
24
</tbody>
25
</table>
26
{% endblock %}