buildsomething/templates/page.html

25 lines
668 B
HTML

{% import "_macros.html" as macros %}
{% extends "index.html" %}
{% block title %}{{ page.title }} | {{ super() }} {% endblock title %}
{% block hero %}
{% endblock hero %}
{% block header %}
<header class="box-shadow">
{% if lang =="en" %}
{% set path = [""] | concat(with=page.components) | join(sep="/") %}
{% else %}
{% set path = [""] | concat(with=page.components | slice(start=1)) | join(sep="/") %}
{% endif %}
{{ macros::render_header(path=path) }}
</header>
{% endblock header %}
{% block content %}
<div class="content text ">
<div class="heading-text">{{ page.description }}</div>
{{ page.content | safe }}
</div>
{% endblock content %}