{% extends theme("user/profile_layout.html") %} {%- from theme("_macros/pagination.html") import render_pagination, topic_pages %} {% block breadcrumb %} {% endblock %} {% block profile_content %}
{% for topic in topics.items %}
{{ topic.date_created|format_datetime }}
{{ topic.first_post.content|markup }}
{% else %}
{% endfor %} {% if topics.items %}
{{ render_pagination(topics, url_for('user.view_all_topics', username=user.username)) }}
{% endif %}
{% endblock %}