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.html

View raw Download
text/plain • 617 B
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.nekoweb.org/{{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