17 lines
498 B
HTML
17 lines
498 B
HTML
|
{% extends "layout.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1 style="margin-bottom: 0;">{{ page.title }}</h1>
|
||
|
{% if page.date or page.author %}
|
||
|
<small style="display: block; margin-bottom: 20px;">
|
||
|
Posted
|
||
|
{% if page.extra.author %}by {{ page.extra.author }}{% endif %}
|
||
|
on {{ page.date }}
|
||
|
</small>
|
||
|
{% endif %}
|
||
|
{{ page.content | safe }}
|
||
|
{% if page.extra.link %}
|
||
|
<p>Visit <a href="{{ page.extra.link }}">here</a> for more info.</p>
|
||
|
{% endif %}
|
||
|
{% endblock %}
|