2022-11-15 11:11:07 +00:00
|
|
|
<!--
|
|
|
|
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=" ") %}
|
|
|
|
|
2022-11-15 14:43:55 +00:00
|
|
|
<footer class="bottom-0">
|
2022-11-15 11:11:07 +00:00
|
|
|
{% 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='') %}
|
2022-11-15 14:43:55 +00:00
|
|
|
<div class="{{ footer_class }}">
|
2022-11-15 11:11:07 +00:00
|
|
|
{# <img src="{{get_url(path='images/')}}" class="w-60" alt=""> #}
|
2023-07-20 07:47:55 +00:00
|
|
|
<p class="text-center">© Ourzone™ All Rights Reserved 2023</p>
|
2022-11-15 11:11:07 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</footer>
|