WhisperMaPhone/thoughts/templates/thoughts/index.gmi

23 lines
866 B
Plaintext

=> /about About
# Thoughts
{% if not first_page %}{% for page in pages %}{% if page.slug == current_page_slug %}
## {{ page.formatted_name }}{% else %}
=> /?page={{ page.slug }} {{ page.formatted_name }}{% endif %}{% endfor %}
=> /search Search{% endif %}
{% load tz %}
{% for thought in thoughts %}### {% timezone thought.get_timezone %}{{ thought.posted|time:"g:i a" }} {{ thought.posted|date:"M d, Y" }}, UTC{{ thought.get_offset_hours }}{% endtimezone %}
{{ thought.text|safe }}
{% if thought.extended_text %}
{{ thought.extended_text|safe }}
{% endif %}{% if thought.media %}
=> gemini://thoughts.learnerpages.com{{ thought.media.url }}{% endif %}
{% endfor %}
{% for page in pages %}{% if page.slug == current_page_slug %}
### {{ page.formatted_name }}{% else %}
=> /?page={{ page.slug }} {{ page.formatted_name }}{% endif %}{% endfor %}
=> /search Search