You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.8 KiB
42 lines
1.8 KiB
{# SPDX-License-Identifier: EUPL-1.2 #}
|
|
|
|
{% from "includes/macros/markdown_by_paragraph.twig" import markdown_by_paragraph %}
|
|
{% from "includes/macros/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 icon-embed2"></i> with <i class="icon icon-heart"></i>.
|
|
</div>
|
|
<div class="px-20">
|
|
🄯 {{ "now"|date("Y") }} - support@seacms.io
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</footer>
|
|
{% endif %}
|
|
|