www_ourverse.tf/templates/partials/footer.html

21 lines
808 B
HTML
Raw Normal View History

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=""> #}
2022-12-19 11:30:06 +00:00
<p class="text-center">&#169; Ourphone&trade; All Rights Reserved 2022</p>
2022-11-15 11:11:07 +00:00
</div>
{% endif %}
</footer>