list.html
ASCII text
1
{% extends "_layout.html" %}
2
{% block Head %}
3
{{super()}}
4
<link rel="stylesheet" href="/src/code-blocks.css" />
5
<meta property="og:type" content="website" />
6
<meta property="og:title" content="{{Title}}" />
7
<meta property="og:url" content="https://steve0greatness.github.io//ist/{{Location}}" />
8
{% endblock %}
9
{% block title %}{{Title}}{% endblock %}
10
{% from "_macros.html" import GenerateBreadcrumbs %}
11
{% block breadcrumbs %}{{ GenerateBreadcrumbs([{ "href": "/list", "title": "List Index" }, { "href": Location, "title": Title }]) }}{% endblock %}
12
{% block content %}
13
<h1>{{Title}}</h1>
14
{{ Content }}
15
{% endblock %}
16