{% extends "blog.html" %} {% if render_blog is not defined %} {% set label = "Continue Reading" %} {% if theme_options and "label" in theme_options %} {% set label = theme_options["label"] %} {% endif %} {% macro render_blog(title, description, time, url, page) -%}

{{ title }}

{{ ("Updated" if is_revision else "Published") + " at: " + time }}
{% if show_tags and "tags" in page.meta %} {% call render_tags(page.meta["tags"], index_url) %} {% endcall %} {% endif %}

{{ description }}

{% if theme_options and "plain_button" in theme_options and theme_options["plain_button"] %} {{ label }} {% else %} {{ label }} {% endif %}
{{ caller() }} {%- endmacro %} {% endif %} {% block style %} {{ super() }} {% endblock %}