{% extends theme("user/profile_layout.html") %} {% from theme('macros.html') import render_pagination, topic_pages %} {% block breadcrumb %} {% endblock %} {% block profile_navigation %} {% endblock %} {% block profile_content %}
{% for post in posts.items %}
{{ post.date_created|format_date('%d %B %Y - %H:%M') }}
{{ post.content|markup }}
{% else %}
{% endfor %} {% if posts.items|length > 1 %}
{{ render_pagination(posts, url_for('user.view_all_posts', username=user.username)) }}
{% endif %}
{% endblock %}