summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html15
1 files changed, 8 insertions, 7 deletions
diff --git a/templates/index.html b/templates/index.html
index 9a05e7a..b18ca34 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,11 +1,12 @@
{% extends 'base.html' %}
{% block content %}
- <h2>Posts</h2>
- <ul>
- {% for post in posts %}
- <li><a href="{{ url_for('post', 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>
+<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 %} \ No newline at end of file