mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-19 16:39:01 +00:00
20 lines
No EOL
792 B
Twig
Executable file
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">© {{ "now"|date("Y") }} {{ site.author.name }}. {{config.theme.footer.copyright_text|raw}}.</p>
|
|
</section> |