15 lines
453 B
HTML
15 lines
453 B
HTML
{% extends "juice/templates/page.html" %}
|
|
{% block title %}{{ page.title }} - {{ config.title }} {% endblock title %}
|
|
|
|
{% block content %}
|
|
{% if page.description %}
|
|
<h1 class="heading-text">{{ page.description }}</h1>
|
|
{% else %}
|
|
<h1 class="heading-text">{{ page.title }}</h1>
|
|
{% endif %}
|
|
{% if page.date %}
|
|
<time datetime="{{ page.date }}">{{ page.date | date(format="%d %B %Y") }}</time>
|
|
{% endif %}
|
|
|
|
{{ page.content | safe }}
|
|
{% endblock content %}
|