{% extends "page.html" %} {% block rdfa_type %}schema:BlogPosting{% endblock %} {% block meta_extra %} {% set authors_data = load_data(path="authors.json") -%} {% if authors_data[page.authors.0].fediverse %} {% endif %} {% endblock %} {% block content %} {% set blog_section = get_section(path="blog/_index.md") %} {% set post = page -%}
{% if post.extra.microdata.about %} {% for about in post.extra.microdata.about %} {% endfor %} {% endif %}
{{ page.content | safe }}
{% set image = resize_image(path="@/" ~ post.colocated_path ~ "/" ~ post.extra.depiction.image, width=800, height=600) -%} {{ post.extra.depiction.alt }} {% if post.extra.depiction.credits %}
{{ post.extra.depiction.credits }}
{% endif %}
{% include "blog/author_media.html" %}
{% endblock %}