My Website
Hello, welcome to my website about stuff. See the posts below for info.
All posts not sorted
All posts sorted by date
{% for post in posts | sort(attribute='iso_date', reverse=true) %}
- {{ post.title }} {{ post.date }}
{% endfor %}
Recent three posts sorted by date
{% for post in posts | sort(attribute='iso_date', reverse=true) %}
{% if loop.index0 < 3 %}
- {{ post.title }}
{% endif %}
{% endfor %}
Posts organized by categories
Food
{% for post in posts %}
{% if 'food' in post.categories %}
- {{ post.title }}
{% endif %}
{% endfor %}
Tech
{% for post in posts %}
{% if 'tech' in post.categories %}
- {{ post.title }}
{% endif %}
{% endfor %}
Posts organized by tags
macOS
{% for post in posts %}
{% if 'macos' in post.tags %}
- {{ post.title }}
{% endif %}
{% endfor %}
Swift
{% for post in posts %}
{% if 'swift' in post.tags %}
- {{ post.title }}
{% endif %}
{% endfor %}
Linux
{% for post in posts %}
{% if 'linux' in post.tags %}
- {{ post.title }}
{% endif %}
{% endfor %}