{% 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 %} {% if this.extra.reddit %} Comment on Reddit {% endif %} {% if this.extra.twitter %} Comment on Twitter {% endif %} {% endif %} {% endblock content %}