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

Thoughts

About{% if authenticated %} Post {% endif %} {% endblock %} {% block head %} {% endblock %} {% block main %} {% if not first_page %} {% endif %} {% load tz %} {% for thought in thoughts %}
{{ thought.text|urlize }}
{% with file_type=thought.get_media_type %} {% if file_type or thought.extended_text.strip %}
{% if thought.extended_text.strip %} {{ thought.extended_text|urlize }} {% endif %} {% if file_type == "png" or file_type == "jpeg" %} {{ thought.media_alt }} {% elif file_type == "m4a" or file_type == "mp3" or file_type == "aac" %} {% if thought.media_alt %}
Transcript
{{ thought.media_alt|urlize }}
{% endif %} {% elif file_type == "mov" or file_type == "mp4" %} {% if thought.media_alt %}
Description
{{ thought.media_alt|urlize }}
{% endif %} {% endif %}
{% endif %} {% endwith %}
Link {% if thought.uuid == highlighted and authenticated %} Edit {% endif %} {% timezone thought.get_timezone %} {{ thought.posted|time:"g:i a" }} {{ thought.posted|date:"M d, Y" }}, UTC{{ thought.get_offset_hours }} {{ thought.get_season }} {% endtimezone %}

{% endfor %} {% endblock %} {% block footer %} {% endblock %} {% block scripts %} {% endblock %}