11 lines
220 B
HTML
11 lines
220 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<p>{{ description }}</p>
|
|
<ul>
|
|
{% for id, title in threads %}
|
|
<li><a href="{{ url_for('thread', thread_id = id) }}">{{ title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|