{# post.html ~~~~~~~~~ Adaptation of basic/page.html to add a by-line and date to the end. :copyright: Copyright 2021 by Keith F. Prussing. :license: BSD, see LICENSE.rst for details. #} {%- extends "basic/page.html" %} {% block body %}
{{ super() }}
{%- if "author" in meta %}

{{ meta.author }} {%- if "date" in meta %} on {{ meta.date }} {%- endif -%}

{%- endif %} {% endblock %}