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