{% extends "thoughts/page.html" %} {% load static %} {% block title %}Thoughts{% endblock %} {% block head %} {% if not first_page %} {% else %} {% endif %} {% spaceless %} {% for thought in thoughts %} {% if thought.uuid == highlighted %} {% if thought.get_media_type == "png" or thought.get_media_type == "jpeg" %} {% endif %} {% endif %} {% endfor %} {% endspaceless %} {% endblock %} {% block headerright %} {% endblock %} {% block main %} {% for thought in thoughts %}
{% if thought.uuid == highlighted %} {% if authenticated %} {{ thought.get_html_content_authenticated }} {% else %} {{ thought.get_html_content }} {% endif %} {% else %} {{ thought.html_content|safe }} {% endif %}
{% endfor %} {% endblock %} {% block scripts %} {% endblock %}