{% extends "base.html" %} {% block seo_tags %} {% endblock seo_tags %} {% block title %}{{ metadata.title | title }}{% endblock title %} {% block content %}

{{ metadata.title }}

{% set created = metadata.created | date(format="%B %e, %Y") %} {% if metadata.categories | length > 0 %} Tags: {% for category in metadata.categories %} {{ category }}{% if not loop.last %}, {% endif %} {% endfor %} {% endif %}

{{ content | safe }} {% endblock content %}