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