{% extends "whispermaphone/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 }}
{% with file_type=thought.get_media_type %} {% if file_type or thought.extended_text.strip %}
{% if thought.extended_text.strip %}
{{ thought.extended_text }}
{% endif %} {% if file_type == "png" or file_type == "jpeg" %} {{ thought.media_alt }} {% elif file_type == "m4a" or file_type == "mp3" or file_type == "aac" %} {% elif file_type == "mov" or file_type == "mp4" %} {% endif %}
{% endif %} {% endwith %}
{% 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 %} Permalink

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