blog-post.html
ASCII text
1
{% extends "_layout.html" %}
2
{% block title %}{{ Title }}{% endblock %}
3
{% from "_macros.html" import GenerateBreadcrumbs %}
4
{% block breadcrumbs %}{{ GenerateBreadcrumbs([{ "href": "/blog","title": "Blog Index" }, {"href": "#", "title": Title}]) }}{% endblock %}
5
{% block content %}
6
<article>
7
<h2 id="blog-post-titled">{{ Title }}</h2>
8
<time>{{PostDate}}</time>
9
{{ Content }}
10
</article>
11
{% endblock %}