{% extends "base.html" %} {% from "macros/tag-links.html" import tag_links with context %} {% from "macros/narration-player.html" import narration_player with context %} {% block body %} {% if this.parent._id == 'blog' %}

{{ this.kicker }}

{{ this.title }}

{{ this.summary }}

{{ 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 }}

{{ 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 %}
{% endif %} {% endblock %}