{% extends "blog.html" %} {% macro render_tags(tags, base_url) -%}
{% for tag in tags %} #{{ tag }} {% endfor %}
{{ caller() }} {% endmacro %} {% if render_blog is not defined %} {% macro render_blog(title, description, time, url, pg) -%}

{{ title }}

{% if show_tags and "tags" in pg.meta %} {% call render_tags(pg.meta["tags"], index_url) %} {% endcall %} {% endif %}

{{ description }}

{{ ("Updated" if is_revision else "Published") + " at: " + time }}
{{ caller() }} {%- endmacro %} {% endif %} {% block style %} {{ super() }} {% endblock %}