{% extends "master.html" %} {% from './macros.html' import blog_card %} {% block customcss %} {% endblock %} {% block title %} {{page.title}} {% endblock %} {% block seoTags %} {% endblock %} {% block header %}

{{ page.title }}

{% if page.date and page.author %}

{{page.date.strftime("%B %d, %Y")}} • {{page.author}} •

{% elif page.date %}

{{page.date.strftime("%B %d, %Y")}} •

{% elif page.author %}

{{page.author}} •

{% endif %} {% if page.image %} {{page.image}} {% endif %} {% endblock %} {% block aside %} Tags:
{% for tag in page.tags %} {{tag.title}} {% endfor %} {% endblock %} {% block body %}
{{ page.body_html|safe }}
{% for tag in page.tags %} {{tag.title}} {% endfor %}

{% if page.author %}{{ page.author }}{% else %}{{blog.title}}{% endif %}

{% endblock body %} {% block bottomMoreContent %} {% if page.related %} {% endif %} {% endblock %} {% block customjs %} {% endblock %}