{% macro post_title (post) %}
{% if post._cat %}

{{ post.title }}

{% else %}

{{ post.title }}

{% endif %}

{{ post.created }}

{% endmacro%} {% macro post_image (post) %} {% if post.image %}
{% endif %} {% endmacro %} {% macro post_content (post) %}

{{ post.content|safe }}

{% endmacro %} {% macro post_cat (post) %} {% if post._cat %}
首页 / {{post._cat.name}}
{% endif %} {% endmacro %} {% macro post_list (posts) %} {%for post in posts %}
{{ post_title(post) }} {{ post_image(post) }} {{ post_content(post) }}
{% endfor %} {% endmacro %} {% macro post_block (post) %}
{{ post_cat(post) }} {{ post_title(post) }} {{ post_image(post) }} {{ post_content(post) }}
{% endmacro %} {% macro post_page(newer, older) %} {% if newer || older %} {% endif %} {% endmacro %}