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.github.io/list/" /> 6{% endblock %} 7{% block title %}List Index{% endblock %} 8{% from "_macros.html" import GenerateBreadcrumbs %} 9{% block breadcrumbs %}{{ GenerateBreadcrumbs([{ "href": "/list", "title": "List Index" }]) }}{% endblock %} 10{% block content %} 11<h1>List Index</h1> 12{{ Content }} 13{% endblock %}