{% if current_item %}
{% endif %}
{{ user.username }}
{{ user.bio }}
Mainpage
Posts
{% if is_current_user %}
Edit Profile
Upload Post
{% endif %} {% if current_user.is_authenticated and current_user.username != user.username %} {% if not subscribed %}
Subscribe
{% else %}
Unsubscribe
{% endif %} {% endif %}
Latest Popular Arts
{% if arts %}
View All Arts ({{ total_arts }})
{% endif %}
{% if arts %} {% for art in arts %}
{{ art.name }}
Cookies: {{ art.cookie_votes }}
{% endfor %} {% else %}
No published arts.
{% endif %}
Latest Popular Videos
{% if videos %}
View All Videos ({{ total_videos }})
{% endif %}
{% if videos %} {% for video in videos %}
{{ video.video_name }}
Cookies: {{ video.cookie_votes }}
{% endfor %} {% else %}
No published videos.
{% endif %}
Latest Popular Comics
{% if comics %}
View All Comics ({{ total_comics }})
{% endif %}
{% if comics %} {% for comic in comics %}
{{ comic.name }}
Cookies: {{ comic.cookie_votes }}
{% endfor %} {% else %}
No published comics.
{% endif %}