veilid-dot-com/themes/veilid/layouts/index.html.twig

23 lines
689 B
Twig
Raw Normal View History

2023-08-15 19:25:21 +00:00
{# all "showable pages by default #}
{% set pages = site.pages.showable %}
{# in case of a list page, take its sub pages #}
{% if page.pages is defined %}
{%- set pages = page.pages -%}
{% endif %}
{# in case of a paginated list page, take the paginator list pages #}
{% if page.paginator.pages is defined %}
{%- set pages = page.paginator.pages -%}
{% endif %}
{% extends '_default/page.html.twig' %}
{%- block content ~%}
{%- block content_header %}
<div class="take-back-control">
<h2 id="page-title">{{ page.title }}</h2>
</div>
{% endblock content_header ~%}
{{- page.content ~}}
{%- endblock content ~%}