A Python content management system designed for kirsle.net featuring a blog, comments and photo albums.
https://rophako.kirsle.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
425 B
18 lines
425 B
{% extends "layout.html" %}
|
|
{% block title %}Blog Archive{% endblock %}
|
|
{% block content %}
|
|
|
|
{% for date in archive %}
|
|
<h1>{{ date["month_friendly"] }}</h1>
|
|
|
|
<ul>
|
|
{% for post in date["posts"] %}
|
|
<li>
|
|
<a href="{{ url_for('blog.entry', fid=post['fid']) }}">{{ post["subject"] }}</a>
|
|
— <em>{{ post['pretty_time'] }} by {{ post['profile']['name'] }}</em>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|