www_ourphone/templates/partials/footer.html
ehab-hassan 65b47454d7
Some checks are pending
www2.ourphone.tf / Deploy (push) Waiting to run
update header & footer
2024-11-05 12:33:27 +02:00

21 lines
808 B
HTML

<!--
Tailwind UI components require Tailwind CSS v1.8 and the @tailwindcss/ui plugin.
Read the documentation to get started: https://tailwindui.com/documentation
-->
{%- set section = get_section(path="_index.md") %}
{% set subsections_str = section.subsections | join(sep=" ") %}
<footer class="bottom-0">
{% if "footer/_index.md" in subsections_str %}
{%- set section = get_section(path="footer/_index.md") %}
{{ section.content | safe }}
{% else %}
{% set footer_class = config.extra.footer_class | default(value='') %}
<div class="{{ footer_class }}">
{# <img src="{{get_url(path='images/')}}" class="w-60" alt=""> #}
<p class="text-center">&#169; Ourphone&trade; All Rights Reserved 2024</p>
</div>
{% endif %}
</footer>