WhisperMaPhone/thoughts/templates/thoughts/index.gmi

13 lines
450 B
Plaintext
Raw Normal View History

=> /about About
2021-06-11 17:31:07 +00:00
# Thoughts
{% for thought in thoughts %}{{ thought.text|safe }}
{% if thought.extended_text %}
2021-06-25 07:22:48 +00:00
{{ thought.extended_text|safe }}
{% endif %}{% if thought.media %}
2021-10-03 23:51:54 +00:00
=> gemini://thoughts.learnerpages.com{{ thought.media.url }}{% endif %}{% load tz %}
2021-06-11 17:31:07 +00:00
```
{% timezone thought.get_timezone %}{{ thought.posted|time:"g:i a" }} {{ thought.posted|date:"M d, Y" }}, UTC{{ thought.get_offset_hours }}{% endtimezone %}
2021-06-11 17:31:07 +00:00
```
2021-10-03 23:51:54 +00:00
▔▔▔
2021-06-11 17:31:07 +00:00
{% endfor %}