grav-theme-future2021/templates/partials/sidebar-bits/footer.html.twig
2023-09-29 13:59:11 +02:00

20 lines
No EOL
792 B
Twig
Executable file

<!-- 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 {% if show_sidebar == false %}special{% endif %}">
<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 %}
<!-- Social links and Copyright -->
<section id="footer">
{% if theme_var('enable_social') %}
<ul class="icons">
{% include 'partials/social.html.twig' %}
</ul>
{% endif %}
<p class="copyright">&copy; {{ "now"|date("Y") }} {{ site.author.name }}. {{config.theme.footer.copyright_text|raw}}.</p>
</section>