back
{{month_name}} {{ year }}
{% for tweet in tweets %}
{# using revindex so that they don't change when
there's a new tweet #}
{# You can click on the twitter logo to see the original tweet on twitter.com
(Note: need to keep that on one line, otherwise we got horizontal lines in the
final HTML)
#}
{# Rest of the h2 title is the tweet date #}
{{ tweet.date }}
{# If site_url is set, generate a permalink with a ¶ symbol #}
{% if site_url %}
¶
{% endif %}
{{ tweet.fixed_text }}
{% endfor %}
back
{% include "footer.html" %}