๐Ÿท๏ธ {{ 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 }}
๐Ÿท๏ธ Tags set<text>
{% for tag in article.tags|sort %} {{ tag }}
โœ•
{% endfor %}
๐Ÿ—‚๏ธ Metadata map<text, text>
{% if article.metadata %} {% for k, v in article.metadata.items()|sort %} {% endfor %}
KeyValue
{{ k }} {{ v }}
{% else %}
No metadata entries
{% endif %}
๐Ÿ“ Revisions list<text>
{% if article.revisions %} {% else %}
No revisions recorded
{% endif %}