MainPage
Profile
{{ pub_type | capitalize }} by {{ username }}
Search
{% for item in items %}
{% if pub_type == 'arts' %}
{% elif pub_type == 'videos' %}
{{ item.video_name }}
{% elif pub_type == 'comics' %}
{{ item.name }}
{% endif %}
{% endfor %}
{% if pagination.has_prev %}
« Previous
{% endif %} {% for page in pagination.iter_pages() %} {% if page %}
{{ page }}
{% endif %} {% endfor %} {% if pagination.has_next %}
Next »
{% endif %}