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<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<article> 15<header> 16<h2 id="blog-post-titled">{{ Title }}</h2> 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.svg" width="16" height="16" aria-hidden="true" title="Share to Mastodon" /> 20</a> 21<a href="/blog/{{PostPath}}" title="Direct link"> 22<span aria-hidden="true"> 23🔗 24</span> 25</a> 26<a href="/blog/{{PlaintextPath}}" title="Markdown source"> 27<img src="/md-src.svg" width="16" height="16" aria-hidden="true" /> 28</a> 29</div> 30<time>{{PostDate}}</time> 31</header> 32{{ Content }} 33</article> 34{% endblock %}