{% extends "thoughts/page.html" %} {% load static %} {% block title %}Thoughts{% endblock %} {% block navigation %}

Thoughts

About{% if authenticated %} Post {% endif %} {% 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 main %} {% if not first_page %} {% endif %} {% 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 footer %} {% endblock %} {% block scripts %} {% endblock %}