{%- import "macros.askama" as macros -%} {% match color %} {% when Some with (color) %} {% when None %} {% endmatch %} {{ title }} {% if rss %} {% endif %} {% if js %} {% endif %}

{{ title }}

{{ description }}

posts

{% if posts.is_empty() %} there are no posts right now. check back later! {% else %} {% if js %} sort by:
{% endif %}
{% for post in posts %}
{{ post.title }}
{{ post.description }}
{% call macros::table(post) %}
{% endfor %}
{% endif %}
{% let tags = posts|collect_tags %} {% if !tags.is_empty() %}

tags

{% endif %} {% for tag in tags %} {{ tag.0 }} - {{ tag.1 }} post{% if tag.1 != 1 %}s{%endif %}
{% endfor %}