19 lines
675 B
Text
19 lines
675 B
Text
{% macro table(post) %}
|
|
{% match post.created_at %}
|
|
{% when Some(created_at) %}
|
|
written: {{ created_at|date }}<br />
|
|
{% when None %}
|
|
{% endmatch %}
|
|
{% match post.modified_at %}
|
|
{% when Some(modified_at) %}
|
|
last modified: {{ modified_at|date }}<br />
|
|
{% when None %}
|
|
{% endmatch %}
|
|
|
|
{% if !post.tags.is_empty() %}
|
|
tags:
|
|
{% for tag in post.tags %}
|
|
<a href="/?tag={{ tag }}" title="view all posts with this tag">{{ tag }}</a>
|
|
{% endfor %}<br />
|
|
{% endif %}
|
|
{% endmacro %}
|