seacms-theme/includes/footer.twig
2023-02-16 20:34:18 +01:00

43 lines
1.8 KiB
Twig

{# SPDX-License-Identifier: EUPL-1.2 #}
{% from "includes/markdown_by_paragraph.twig" import markdown_by_paragraph %}
{% from "includes/actions.twig" import actions %}
{% if not (index.location.disabled and index.social.disabled and index.footer.disabled) %}
<!-- Footer-->
<footer role="contentinfo">
<section id="footer" class="site-footer py-36">
<div class="sm:flex justify-evenly animation fade-in">
<div class="flex align-items-center mx-36 lg:ml-0">
<div id="footer-desc">{{ pages["footer"].meta.footer_desc }}</div> </div>
<div class="flex flex-wrap justify-center align-items-center mx-36 my-36 md:my-0">
<div class="flex md:align-center">
<a href="{{ pages["footer"].meta.demo_link|link }}">
<img class="" src="{{ pages["footer"].meta.img_footer|url }}" style="max-width: 3500px; max-height: 200px;" alt="{{ pages["footer"].meta.img_footer_alt }}">
</a>
</div>
<div class="flex md:align-center">
<div class="m-20">
<h3 id="footer-title" class="color-white text-uppercase">{{ pages["footer"].meta.footer_title }}</h3>
<div id="footer-content">{{ pages["footer"].meta.footer_content }}</div>
</div>
</div>
</div>
</div>
</section>
<section id="bottombar" class="text-smaller py-20">
<div class="flex flex-wrap md:justify-between justify-center content-center">
<div class="px-20">
<a href="https://seacms.io"><b>SEA</b>CMS</a> is a fork of <a href="https://picocms.org/" target="_blank">Pico</a>.
</div>
<div class="px-20">
Is released under the <a href="https://eupl.eu/1.2/fr">EUPL license</a> and was <i class="icon moon-code"></i> with <i class="icon moon-heart"></i>.
</div>
<div class="px-20">
🄯 {{ "now"|date("Y") }} - support@seacms.io
</div>
</div>
</section>
</footer>
{% endif %}