10 lines
277 B
HTML
10 lines
277 B
HTML
{% extends "base.html" %} {% block content %}
|
|
<section class="hero">
|
|
<h1>{{ page.title }}</h1>
|
|
{% if page.description %}
|
|
<p class="tagline">{{ page.description }}</p>
|
|
{% endif %}
|
|
</section>
|
|
<section class="content">{{ content | safe }}</section>
|
|
{% endblock content %}
|