list-index.html
ASCII text
1{% extends "_layout.html" %} 2{% block Head %} 3{{super()}} 4{% endblock %} 5{% block title %}List Index{% endblock %} 6{% from "_macros.html" import GenerateBreadcrumbs %} 7{% block breadcrumbs %}{{ GenerateBreadcrumbs([{ "href": "/list", "title": "List Index" }]) }}{% endblock %} 8{% block content %} 9<h1>List Index</h1> 10{{ Content }} 11{% endblock %}