{% include 'navbar.html' %} {% if content_type == 'art' %}

Image

Art Image

Author: {{ content.username }}

Publication Date: {{ content.publication_date }}

Tags: {% for tag in content.tags.split(',') %} {{ tag.strip() }}{% if not loop.last %}, {% endif %} {% endfor %}

{% elif content_type == 'video' %}

Video

Author: {{ content.username }}

Publication Date: {{ content.publication_date }}

Description: {{ content.description }}

Tags: {% for tag in content.tags.split(',') %} {{ tag.strip() }}{% if not loop.last %}, {% endif %} {% endfor %}

{% elif content_type == 'comic' %}

{{ content.name }}

{% if comic_pages %} {% for page in comic_pages %} Page {{ page.page_number }} {% endfor %} {% else %}

No pages available for this comic.

{% endif %}
{% endif %} {% if current_user.is_authenticated and current_user.username == content.username %}
{% endif %} {% if content_type != 'comic' %}

Comments

{% for comment in comments %} {% else %}

No comments yet. Be the first to comment!

{% endfor %}
{% if current_user.is_authenticated %}
{% else %}

You need to log in to post a comment.

{% endif %}
{% endif %} {% if content_type != 'comic' %} {% endif %}

Votes: {{ content.cookie_votes }} 🍪

{% if current_user.is_authenticated %}
{% else %}

You need to log in to vote.

{% endif %}