WhisperMaPhone/thoughts/templates/thoughts/index.gmi

23 lines
866 B
Plaintext
Raw Normal View History

=> /about About
2021-06-11 17:31:07 +00:00
# Thoughts
2022-09-11 01:35:07 +00:00
{% 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 }}
2021-06-11 17:31:07 +00:00
{% if thought.extended_text %}
2021-06-25 07:22:48 +00:00
{{ thought.extended_text|safe }}
{% endif %}{% if thought.media %}
2022-09-11 01:35:07 +00:00
=> gemini://thoughts.learnerpages.com{{ thought.media.url }}{% endif %}
2021-06-11 17:31:07 +00:00
{% endfor %}
2022-09-11 01:35:07 +00:00
2022-09-11 01:54:46 +00:00
{% for page in pages %}{% if page.slug == current_page_slug %}
2022-09-11 01:35:07 +00:00
### {{ page.formatted_name }}{% else %}
=> /?page={{ page.slug }} {{ page.formatted_name }}{% endif %}{% endfor %}
2022-09-11 01:54:46 +00:00
=> /search Search