new homepage

This commit is contained in:
sasha-astiadi
2024-05-31 01:33:40 +03:00
parent 8cc3a3faf4
commit 9003112e45
51 changed files with 723 additions and 235 deletions

View File

@@ -1,23 +1,27 @@
<!--
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="footer/_index.md") %}
{%- set logoPath = section.extra.logoPath %}
{%- set section = get_section(path="_index.md") %}
<div class="border-t border-gray-200"></div>
<footer>
<div class="max-w-screen-2xl mx-auto lg:py-8 py-4 sm:px-6 lg:px-8">
<div class="flex flex-col xl:flex-row xl:gap-4 items-center">
<div class="space-y-8 lg:max-w-sm xl:max-w-sm lg:mr-8 mb-4 xl:col-span-1 text-center xl:text-left">
<img class="w-40 h-auto sm:w-15 mx-auto" src="images/ow_logo.png" alt="logo" />
</div>
{% set subsections_str = section.subsections | join(sep=" ") %}
<div class="bg-gray-200">
<div class="container mx-auto">
<footer class="bottom-0">
{% if "footer/_index.md" in subsections_str %}
{%- set section = get_section(path="footer/_index.md") %}
<div class="mt-2 lg:mt-0 w-full px-8 sm:px-12 md:px-16 lg:px-20 footer-cust text-center xl:text-left">
{{ section.content | safe }}
{% else %}
{% set footer_class = config.extra.footer_class | default(value='') %}
<div class="{{ footer_class ~ ' -mx-20'}}">
<img src="{{get_url(path='images/footer.png')}}" class="w-60" alt="">
{% endif %}
</footer>
</div>
</div>
</div>
</div>
<div class="mt-8 mx-auto border-t border-gray-200 pt-8 pb-2 text-center">
<p data-v-14efe4a7="" class="text-base leading-6 text-gray-400">
© 2024 Ourworld Holdings, All rights reserved.
<a target="_blank" href="https://library.threefold.me/info/legal/#/legal__terms_conditions_websites" class="leading-6 text-gray-500 hover:text-gray-900">Terms &amp; Conditions |
</a><a target="_blank" href="https://library.threefold.me/info/legal/#/legal__privacypolicy" class="leading-6 text-gray-500 hover:text-gray-900">Privacy Policy |
</a><a href="/tfLabs" class="leading-6 text-gray-500 hover:text-gray-900">ThreeFold Labs IT</a>
</p>
</div>
</div>
</footer>