{% macro span_date(value) %} {{ value|date(df) }} {% endmacro %} {% macro table(post) %}
{% match post.created_at %} {% when Some(created_at) %}
written
{% call span_date(created_at) %}
{% when None %} {% endmatch %} {% match post.modified_at %} {% when Some(modified_at) %}
last modified
{% call span_date(modified_at) %}
{% when None %} {% endmatch %} {% if !post.tags.is_empty() %}
tags
{% for tag in post.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endmacro %}