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/pygments-friendly.css" /> 6<link rel="stylesheet" href="/src/blog.css" /> 7<link rel="alternate" href="/blog/{{PlaintextPath}}" type="text/plain" title="Post source" /> 8{% endblock %} 9{% from "_macros.html" import GenerateBreadcrumbs %} 10{% block breadcrumbs %}{{ GenerateBreadcrumbs([{ "href": "/blog","title": "Blog Index" }, {"href": "#", "title": Title}]) }}{% endblock %} 11{% block content %} 12<article> 13<header> 14<h2 id="blog-post-titled">{{ Title }}</h2> 15<div role="toolbar" class="toolbar"> 16<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"> 17<img src="/toot-kytta-dev-icon.svg" width="16" height="16" aria-hidden="true" title="Share to Mastodon" /> 18</a> 19<a href="/blog/{{PostPath}}" title="Direct link"> 20<span aria-hidden="true"> 21🔗 22</span> 23</a> 24<a href="/blog/{{PlaintextPath}}" title="Markdown source"> 25<img src="/md-src.svg" width="16" height="16" /> 26</a> 27</div> 28<time>{{PostDate}}</time> 29</header> 30{{ Content }} 31</article> 32{% endblock %}