uninsane/templates/static.html

24 lines
418 B
HTML

{% extends "base.html" %}
{# template for "static", i.e. non-feed, pages #}:
{% block breadcrumbs %}
/ <a href="/">home</a> / <a>{{ page.slug }}</a>
{% endblock breadcrumbs %}
{# disable the rss header link #}
{% block rss_link %}
{% endblock rss_link %}
{% block title %}
{{ page.title }}
{% endblock title %}
{% block content %}
<h1>
{{ page.title }}
</h1>
{{ page.content | safe }}
{% endblock content %}