mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
30 lines
761 B
Twig
Executable file
30 lines
761 B
Twig
Executable file
<section id="sidebar">
|
|
|
|
{% block intro %}
|
|
{% include 'partials/sidebar-bits/intro.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block miniposts %}
|
|
{% include 'partials/sidebar-bits/miniposts.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block latest %}
|
|
{% include 'partials/sidebar-bits/recentposts.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
|
|
{% if page.header.toc_enabled == true and config.plugins["page-toc"].enabled %}
|
|
<div class="page-toc-sticky">
|
|
{% include 'components/page-toc.html.twig' %}
|
|
{% endif %}
|
|
|
|
{% include 'partials/sidebar-bits/footer.html.twig' %}
|
|
|
|
{% if page.header.toc_enabled == true and config.plugins["page-toc"].enabled %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
</section>
|