blob: b18ca34a66df40c2e0c4e448b5e77ebb2c4cf0e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends 'base.html' %}
{% block content %}
<h2>Posts</h2>
<ul>
{% for post in posts %}
<li><a href="{{ url_for('thread', post_id=post.id) }}">{{ post.title }}</a> - {{
post.created_at.strftime('%Y-%m-%d') }}</li>
{% endfor %}
</ul>
<a href="{{ url_for('create') }}">Create a new post</a>
{% endblock %}
|