uninsane/templates/about.html

29 lines
592 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 %}
{# instead of linking to our self in the header, link to the outlinks #}
{% block right_header_link %}
{% set links = get_page(path="links.md") %}
<a href="{{ links.permalink | safe }}">links</a>
{% endblock right_header_link %}
{% block title %}
About |Perfectly Sane
{% endblock title %}
{% block content %}
<h1>
{{ page.title }}
</h1>
{{ page.content | safe }}
{% endblock content %}