mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-23 02:18:57 +00:00
23 lines
650 B
Twig
23 lines
650 B
Twig
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% if page.header.show_breadcrumbs is defined %}
|
|
{% set show_breadcrumbs = page.header.show_breadcrumbs %}
|
|
{% else %}
|
|
{% set show_breadcrumbs = true %}
|
|
{% endif %}
|
|
|
|
{% block menu %}
|
|
{% include 'partials/sidebar_right.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if show_breadcrumbs and config.plugins.breadcrumbs.enabled %}
|
|
{% include 'partials/breadcrumbs.html.twig' %}
|
|
{% endif %}
|
|
|
|
{% include 'partials/blog_item.html.twig' with {'truncate':false} %}
|
|
|
|
<section id="footer" class="align-center">
|
|
{% include 'partials/footer.html.twig' %}
|
|
</section>
|
|
{% endblock %}
|