list-index.html
ASCII text
1
{% extends "_layout.html" %}
2
{% block Head %}
3
{{super()}}
4
<meta property="og:title" content="List index" />
5
<meta property="og:url" content="https://steve0greatness.nekoweb.org/list/" />
6
<meta property="og:type" content="website" />
7
{% endblock %}
8
{% block title %}List Index{% endblock %}
9
{% from "_macros.html" import GenerateBreadcrumbs %}
10
{% block breadcrumbs %}{{ GenerateBreadcrumbs([{ "href": "/list", "title": "List Index" }]) }}{% endblock %}
11
{% block content %}
12
<h1>List Index</h1>
13
{{ Content }}
14
{% endblock %}
15