Add theme

This commit is contained in:
David Hoppenbrouwers
2022-10-07 19:13:16 +02:00
parent a6695b3e39
commit 09cb2df004
11 changed files with 164 additions and 32 deletions

View File

@@ -2,10 +2,15 @@
{% block content %}
<p>{{ description }}</p>
<a href="{{ url_for('new_thread', forum_id = forum_id) }}">Create thread</a>
<ul>
<p><a href="{{ url_for('new_thread', forum_id = forum_id) }}">Create thread</a></p>
<table>
<tr>
<th>Topic</th>
</tr>
{% for id, title in threads %}
<li><a href="{{ url_for('thread', thread_id = id) }}">{{ title }}</a></li>
<tr>
<th><a href="{{ url_for('thread', thread_id = id) }}">{{ title }}</a></th>
</tr>
{% endfor %}
</ul>
</table>
{% endblock %}