www_jungle_paradise/templates/partials/footer.html
2023-04-03 16:50:28 +02:00

68 lines
2.7 KiB
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 }}">
<div class="py-4 px-4 sm:px-6">
<div class="lg:flex lg:gap-4">
<div class="space-y-8 lg:max-w-sm lg:mr-8 lg:mb-2 lg:col-span-1">
<img class="w-1/2 lg:mx-4 mb-4" src="/images/logo_black.png" alt="incubaid Logo" />
</div>
<div class="lg:max-w-sm lg:mr-8 lg:mb-2 lg:col-span-1">
<p class="subheader text-xl">Location</p>
<p class="mt-0">
Mbweni Ruins - Unguja Urban West<br>
Zanzibar - Republik of Tanzania<br>
Find us here on Google maps
</p>
</div>
<div class="lg:max-w-sm lg:mr-8 lg:mb-2 lg:col-span-1">
<p class="subheader text-xl">CONTACT</p>
<p class="mt-0">
+255 778 242424 (WhatsApp)<br>
info@hotels-zanzibar.com
</p>
</div>
<div class="lg:max-w-sm lg:mr-8 lg:mb-2 lg:col-span-1">
<p class="subheader text-xl">HOURS</p>
<p class="mt-0">
Reception: 24 Hours<br>
Check-in: after 3pm <br>
Check-out: before 11am
</p>
</div>
</div>
</div>
{# <img src="{{get_url(path='images/')}}" class="w-60" alt=""> #}
<hr class="my-4 border-y-0 w-1/2 border-blue-500/50">
<div class="mx-4 text-center">
<p class="text-base pt-4 my-0">&#169; 2022 Jungle Paradise Beach Resort & SPA <a href="https://threefold.io/" target="_blank" class="hard_blue my-0 text-base">Terms & Conditions</a></p>
</div>
</div>
{% endif %}
</footer>
<style>
.subheader {
font-family: 'Poiret One', cursive;
font-weight: 600;
color: #4173a1;
margin: 0;
}
</style>