A mirror of my website's source code.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 blog-post.html

View raw Download
text/plain • 518 B
ASCII text
        
            
1
{% extends "_layout.html" %}
2
{% block title %}{{ Title }}{% endblock %}
3
{% block Head %}
4
{{super()}}
5
<link rel="stylesheet" href="/src/pygments-friendly.css" />
6
{% endblock %}
7
{% from "_macros.html" import GenerateBreadcrumbs %}
8
{% block breadcrumbs %}{{ GenerateBreadcrumbs([{ "href": "/blog","title": "Blog Index" }, {"href": "#", "title": Title}]) }}{% endblock %}
9
{% block content %}
10
<article>
11
<h2 id="blog-post-titled">{{ Title }}</h2>
12
<time>{{PostDate}}</time>
13
{{ Content }}
14
</article>
15
{% endblock %}