{% extends "internal/base.html" %} {% block title %}{{post.name}}{% endblock %} {% block description %}{{post.description}}{% endblock %} {% block content %}
{% if post.image is not none %} {{post.image.html(site)}} {%- endif -%}
{{post.content.html(site)}}
{%- for author in post.authors -%} {%- if author is string -%} {{author}} {%- else -%} {{author.name}} {%- endif -%} {%- if loop.length > 1 -%} {%- if loop.revindex0 == 1 %} and {% elif not loop.last %}, {% endif -%} {%- endif -%} {%- endfor -%}
Written {{post.date.strftime("%B %d, %Y")}}
← Back to posts
{% endblock %}