---
title: All Posts
date: 2025-01-01
---
{% if not collections.post %}
{% for i in collections.posts reversed %}
- {{ i.date | dateFormat }} - {{ i.data.title }}
{% endfor %}
{% else %}
No posts yet!
{% endif %}
{% if collections | filterTags %}
Posts by tag:
{% include "allTags.html" %}
{% endif %}