๐ท๏ธ {{ article.title }}
{% if flash is defined and flash %}
โ
{{ flash }}
{% endif %}
โ๏ธ {{ article.author }}
ยท Created {{ article.created_at.strftime('%Y-%m-%d %H:%M') if article.created_at else 'โ' }}
article_id: {{ article.article_id }}
{% for tag in article.tags|sort %}
{{ tag }}
{% endfor %}
{% if article.metadata %}
{% else %}
No metadata entries
{% endif %}
{% if article.revisions %}
{% for rev in article.revisions %}
- [{{ loop.index0 }}] {{ rev }}
{% endfor %}
{% else %}
No revisions recorded
{% endif %}