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