uninsane/templates/about.html

27 lines
464 B
HTML

{% extends "base.html" %}
{% block breadcrumbs %}
/ <a href="/">home</a> / <a>about</a>
{% endblock breadcrumbs %}
{# disable the rss header link #}
{% block rss_link %}
{% endblock rss_link %}
{# disable the 'about' header link #}
{% block breadcrumbs_right %}
{% endblock breadcrumbs_right %}
{% block title %}
About |Perfectly Sane
{% endblock title %}
{% block content %}
<h1>
{{ page.title }}
</h1>
{{ page.content | safe }}
{% endblock content %}