mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-22 18:08:55 +00:00
29 lines
899 B
Twig
Executable file
29 lines
899 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 %}
|
|
<!-- About -->
|
|
{% if theme_config.footer.title or theme_config.footer.description %}
|
|
<section class="blurb">
|
|
<h2>{{theme_config.footer.title}}</h2>
|
|
<p>{{theme_config.footer.description}}</p>
|
|
<ul class="actions">
|
|
<li><a href="{{theme_config.footer.button_url}}" class="button" aria-label="{{theme_config.footer.title}}">{{theme_config.footer.button_text}}</a></li>
|
|
</ul>
|
|
</section>
|
|
{% endif %}
|
|
{% include 'partials/sidebar-bits/footer.html.twig' %}
|
|
{% endblock %}
|
|
|
|
</section>
|