{% extends "_layout.html" %}
{% block title %}{{ Title }}{% endblock %}
{% block Head %}
{{super()}}
{% endblock %}
{% from "_macros.html" import GenerateBreadcrumbs %}
{% block breadcrumbs %}{{ GenerateBreadcrumbs([{ "href": "/blog","title": "Blog Index" }, {"href": "/blog/" + PostPath, "title": Title}]) }}{% endblock %}
{% block content %}
{{ Title }}
{% if Revised %}- Revision as of: {% endif %}
{{ Content }}
{% endblock %}