blog-post.html
HTML document, ASCII text
1
{% extends "_layout.html" %}
2
{% block title %}{{ Title }}{% endblock %}
3
{% block Head %}
4
{{super()}}
5
<link rel="stylesheet" href="/src/code-blocks.css" />
6
<link rel="stylesheet" href="/src/blog.css" />
7
<link rel="alternate" href="/blog/{{PlaintextPath}}" type="text/plain" title="Post source" />
8
<meta property="og:title" content="{{ Title }}" />
9
<meta property="og:url" content="https://steve0greatness.github.io/blog/{{PostPath}}" />
10
{% endblock %}
11
{% from "_macros.html" import GenerateBreadcrumbs %}
12
{% block breadcrumbs %}{{ GenerateBreadcrumbs([{ "href": "/blog","title": "Blog Index" }, {"href": "/blog/" + PostPath, "title": Title}]) }}{% endblock %}
13
{% block content %}
14
<h1 id="blog-post-titled">{{ Title }}</h1>
15
<article>
16
<header>
17
<div role="toolbar" class="toolbar">
18
<a href="https://toot.kytta.dev/?text=Take a look at this article by @S0G@mastodon.social: https://steve0greatness.github.io/blog/{{PostPath}}" title="Share to Mastodon">
19
<img src="/toot-kytta-dev-icon.png" width="16" height="16" aria-hidden="true" title="Share to Mastodon" />
20
</a>
21
<a href="/blog/{{PostPath}}" title="Direct link">
22
<img src="/link-icon.png" width="16" height="16" aria-hidden="true" title="Direct link" />
23
</a>
24
<a href="/blog/{{PlaintextPath}}" title="Markdown source">
25
<img src="/md-src.png" width="16" height="16" aria-hidden="true" />
26
</a>
27
</div>
28
<time>{{PostDate}} PST</time> {% if Revised %}- <span aria-hidden="true" style="font-style:italic">Revision as of: </span> <time aria-label="Revision">{{Revised}} PST</time>{% endif %} {% if IsDraft %}<i>Draft</i>{% endif %}
29
</header>
30
{{ Content }}
31
</article>
32
{% endblock %}