index.html
HTML document, ASCII text
1{% extends "default.html" %} 2{% block title %}Index{% endblock %} 3{% block content %} 4<h1>Index</h1> 5 6<div id="index-container"> 7{% for topic, posts in topics %} 8<details class="topic-expander"> 9<summary><h2>{{ topic }}</h2></summary> 10<div class="topic-posts"> 11{% for type, post in posts %} 12<article class="content-area"> 13<h2><a href="/{{ type }}/{{ post.file_name }}" class="article-title">{{ post["title"] }}</a></h2> 14<div class="home-article-date">{{ post.date | strftime("%Y-%m-%d") }}</div> 15<p>{{ post.content | first_paragraph | markdown }}</p> 16</article> 17{% endfor %} 18</div> 19</details> 20{% endfor %} 21</div> 22{% endblock %}