lightspeed/templates/page.html

12 lines
458 B
HTML
Raw Normal View History

2020-04-13 19:19:58 +00:00
{% extends "index.html" %}
{% block title %}{{ page.title }} · {{ config.title }}{% endblock title %}
{% block description %}{{ page.description | default(value=config.description) }}{% endblock description %}
{% block content %}
<h1>{{ page.title }}</h1>
<p style="font-size:90%;">Posted on <time datetime="{{ page.date | date(format="%+") }}">{{ page.date | date(format="%B %d, %Y") }}</time></p>
{{ page.content | safe }}
{% endblock content %}