forked from Hostea/website
17 lines
425 B
HTML
17 lines
425 B
HTML
{% import "macros.html" as macros %}
|
|
{% extends "base.html" %} {% block meta %}
|
|
|
|
{% set description = page.description %}
|
|
{{ macros::get_meta_tags(title=page.title, description=description) }}
|
|
|
|
{% endblock meta %} {% block content %}
|
|
|
|
<div class="page__container">
|
|
<h1 class="page__group-title">{{ page.title }}</h1>
|
|
<div class="page__group-content">
|
|
{{ page.content | safe }}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %}
|