{% extends "base.html" %} {% from "macros/tag-links.html" import tag_links with context %} {% from "macros/narration-player.html" import narration_player with context %} {% from "macros/social-sharing.html" import social_metadata, share_controls with context %} {% block social_head %} {% if this.parent._id == 'blog' %}{{ social_metadata(this, 'BlogPosting', 'article') }}{% else %}{{ social_metadata(this, 'Article', 'article') }}{% endif %} {% endblock %} {% block body %} {% if this.parent._id == 'blog' %}

{{ this.kicker }}

{{ this.title }}

{{ this.summary }}

{{ share_controls(this, 'post') }} {{ narration_player(this) }}
{{ this.body }} {% if this.external_url %}

Visit project →

{% endif %}
{% elif this.parent._id == 'articles' %} {% set article_word_count = this.body|striptags|wordcount %} {% set article_reading_minutes = (article_word_count + 199) // 200 %}

{{ this.kicker }}

{{ this.title }}

{{ this.summary }}

{{ share_controls(this, 'article') }} {{ narration_player(this) }}
{{ this.body }} {% if this.external_url %}

Visit project →

{% endif %}
{% else %}

{{ this.kicker }} — {{ this.date|dateformat('YYYY.MM.dd') }}

{{ this.title }}

{{ this.summary }}

{{ this.body }} {% if this.external_url %}

Visit project →

{% endif %} {{ share_controls(this, 'page') }}
{% endif %} {% endblock %}