A mirror of my website's source code.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 list-index.html

View raw Download
text/plain • 521 B
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