{% extends "base.html" %} {% block title %}Blog | {% set this = section | default(value = page) %}{{ this.title }}{% endblock title %} {% block head %} {% set this = section | default(value = page) %} {% endblock head %} {% block content %} {% set this = section | default(value = page) %}

{{ this.title }}

By {{ this.extra.author }}. {{ this.date | date(format = "%B %d, %Y", timezone="America/Los_Angeles") }}.

{{ this.content | safe }}
{% if this.extra.reddit or this.extra.twitter %}
{% endif %}
{% endblock content %}