...
This commit is contained in:
parent
ced8e0769c
commit
cf1b7da549
@ -1,6 +0,0 @@
|
|||||||
{% extends "_default/base.html" %}
|
|
||||||
{% block content %}
|
|
||||||
{% include "partials/download/download1.html" %}
|
|
||||||
{% include "partials/hero/myhero6.html" %}
|
|
||||||
{% include "partials/hero/myhero7.html" %}
|
|
||||||
{% endblock content %}
|
|
@ -1,33 +0,0 @@
|
|||||||
{% extends "_default/base.html" %}
|
|
||||||
<!-- blog template
|
|
||||||
the template for displaying the blog page.
|
|
||||||
consists of a featured blog row,
|
|
||||||
a paginated list of posts (sorted by date),
|
|
||||||
and a side nav for category and featured post navigation
|
|
||||||
-->
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<!--sets global featured variable as the most recent post with the isFeatured tag-->
|
|
||||||
{%- set section = get_section(path="blog/_index.md") %}
|
|
||||||
{% for page in section.pages %}
|
|
||||||
{% if page.extra.isFeatured %}
|
|
||||||
{%- set_global featured = page %}
|
|
||||||
{% break %}
|
|
||||||
{% endif %}
|
|
||||||
{% if not featured %}
|
|
||||||
{%- set_global featured = section.pages[0] %}
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
{% include "partials/featuredBlog.html" %}
|
|
||||||
|
|
||||||
<div class="flex flex-col md:flex-row container mx-auto my-6">
|
|
||||||
{% include "partials/blogPosts.html" %}
|
|
||||||
{% include "partials/blogSidebar.html" %}
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
{% endblock content %}
|
|
@ -1,8 +0,0 @@
|
|||||||
{% extends "_default/base.html" %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<div class="container-fluid sm:pxi-0 mx-auto overflow-x-hidden">
|
|
||||||
{% include "partials/accordion.html" %}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% endblock content %}
|
|
@ -1,80 +0,0 @@
|
|||||||
<div class="bg-white">
|
|
||||||
<header class="absolute inset-x-0 top-0 z-50">
|
|
||||||
<nav class="flex items-center justify-between p-6 lg:px-8" aria-label="Global">
|
|
||||||
<div class="flex lg:hidden">
|
|
||||||
<button type="button" class="-m-2.5 inline-flex items-center justify-center rounded-md p-2.5 text-gray-700">
|
|
||||||
<span class="sr-only">Open main menu</span>
|
|
||||||
<svg class="size-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="hidden lg:flex lg:gap-x-12">
|
|
||||||
<a href="#" class="text-sm/6 font-semibold text-gray-900">Product</a>
|
|
||||||
<a href="#" class="text-sm/6 font-semibold text-gray-900">Features</a>
|
|
||||||
<a href="#" class="text-sm/6 font-semibold text-gray-900">Marketplace</a>
|
|
||||||
<a href="#" class="text-sm/6 font-semibold text-gray-900">Company</a>
|
|
||||||
</div>
|
|
||||||
<div class="hidden lg:flex lg:flex-1 lg:justify-end">
|
|
||||||
<a href="#" class="text-sm/6 font-semibold text-gray-900">Log in <span aria-hidden="true">→</span></a>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
<!-- Mobile menu, show/hide based on menu open state. -->
|
|
||||||
<div class="lg:hidden" role="dialog" aria-modal="true">
|
|
||||||
<!-- Background backdrop, show/hide based on slide-over state. -->
|
|
||||||
<div class="fixed inset-0 z-50"></div>
|
|
||||||
<div class="fixed inset-y-0 right-0 z-50 w-full overflow-y-auto bg-white px-6 py-6 sm:max-w-sm sm:ring-1 sm:ring-gray-900/10">
|
|
||||||
<div class="flex items-center justify-between">
|
|
||||||
<a href="#" class="-m-1.5 p-1.5">
|
|
||||||
<span class="sr-only">Your Company</span>
|
|
||||||
<img class="h-8 w-auto" src="https://tailwindui.com/plus/img/logos/mark.svg?color=indigo&shade=600" alt="">
|
|
||||||
</a>
|
|
||||||
<button type="button" class="-m-2.5 rounded-md p-2.5 text-gray-700">
|
|
||||||
<span class="sr-only">Close menu</span>
|
|
||||||
<svg class="size-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18 18 6M6 6l12 12" />
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="mt-6 flow-root">
|
|
||||||
<div class="-my-6 divide-y divide-gray-500/10">
|
|
||||||
<div class="space-y-2 py-6">
|
|
||||||
<a href="#" class="-mx-3 block rounded-lg px-3 py-2 text-base/7 font-semibold text-gray-900 hover:bg-gray-50">Product</a>
|
|
||||||
<a href="#" class="-mx-3 block rounded-lg px-3 py-2 text-base/7 font-semibold text-gray-900 hover:bg-gray-50">Features</a>
|
|
||||||
<a href="#" class="-mx-3 block rounded-lg px-3 py-2 text-base/7 font-semibold text-gray-900 hover:bg-gray-50">Marketplace</a>
|
|
||||||
<a href="#" class="-mx-3 block rounded-lg px-3 py-2 text-base/7 font-semibold text-gray-900 hover:bg-gray-50">Company</a>
|
|
||||||
</div>
|
|
||||||
<div class="py-6">
|
|
||||||
<a href="#" class="-mx-3 block rounded-lg px-3 py-2.5 text-base/7 font-semibold text-gray-900 hover:bg-gray-50">Log in</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<div class="relative isolate px-6 pt-14 lg:px-8">
|
|
||||||
<div class="absolute inset-x-0 -top-40 -z-10 transform-gpu overflow-hidden blur-3xl sm:-top-80" aria-hidden="true">
|
|
||||||
<div class="relative left-[calc(50%-11rem)] aspect-1155/678 w-[36.125rem] -translate-x-1/2 rotate-[30deg] bg-linear-to-tr from-[#ff80b5] to-[#9089fc] opacity-30 sm:left-[calc(50%-30rem)] sm:w-[72.1875rem]" style="clip-path: polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 85.5% 0.1%, 80.7% 2%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 45.2% 34.5%, 27.5% 76.7%, 0.1% 64.9%, 17.9% 100%, 27.6% 76.8%, 76.1% 97.7%, 74.1% 44.1%)"></div>
|
|
||||||
</div>
|
|
||||||
<div class="mx-auto max-w-2xl py-32 sm:py-48 lg:py-56">
|
|
||||||
<div class="hidden sm:mb-8 sm:flex sm:justify-center">
|
|
||||||
<div class="relative rounded-full px-3 py-1 text-sm/6 text-gray-600 ring-1 ring-gray-900/10 hover:ring-gray-900/20">
|
|
||||||
Announcing our next round of funding. <a href="#" class="font-semibold text-black"><span class="absolute inset-0" aria-hidden="true"></span>Read more <span aria-hidden="true">→</span></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="text-center">
|
|
||||||
<h1 class="text-5xl font-semibold tracking-tight text-balance text-gray-900 sm:text-7xl">Data to enrich your online business</h1>
|
|
||||||
<p class="mt-8 text-lg font-medium text-pretty text-gray-500 sm:text-xl/8">Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo. Elit sunt amet fugiat veniam occaecat.</p>
|
|
||||||
<div class="mt-10 flex items-center justify-center gap-x-6">
|
|
||||||
<a href="#" class="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-black shadow-xs hover:bg-indigo-500 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">Get started</a>
|
|
||||||
<a href="#" class="text-sm/6 font-semibold text-gray-900">Learn more <span aria-hidden="true">→</span></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="absolute inset-x-0 top-[calc(100%-13rem)] -z-10 transform-gpu overflow-hidden blur-3xl sm:top-[calc(100%-30rem)]" aria-hidden="true">
|
|
||||||
<div class="relative left-[calc(50%+3rem)] aspect-1155/678 w-[36.125rem] -translate-x-1/2 bg-linear-to-tr from-[#ff80b5] to-[#9089fc] opacity-30 sm:left-[calc(50%+36rem)] sm:w-[72.1875rem]" style="clip-path: polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 85.5% 0.1%, 80.7% 2%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 45.2% 34.5%, 27.5% 76.7%, 0.1% 64.9%, 17.9% 100%, 27.6% 76.8%, 76.1% 97.7%, 74.1% 44.1%)"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
|||||||
{% extends "_default/base.html" %}
|
|
||||||
{% import "macros.html" as macros %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
|
|
||||||
<main class="lg:mt-6">
|
|
||||||
<div class="flex">
|
|
||||||
<div class="w-4/6 pr-20">
|
|
||||||
{{ section.content | safe}}
|
|
||||||
</div>
|
|
||||||
<div class="w-2/6 pl-20">
|
|
||||||
{{ macros::page_list(item_type="page-box", group=false) }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<hr>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
{% endblock content %}
|
|
@ -1,33 +0,0 @@
|
|||||||
{% extends "_default/base.html" %}
|
|
||||||
<!-- News template
|
|
||||||
the template for displaying the news page.
|
|
||||||
consists of a featured news row,
|
|
||||||
a paginated list of posts (sorted by date),
|
|
||||||
and a side nav for category and featured post navigation
|
|
||||||
-->
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<!--sets global featured variable as the most recent post with the isFeatured tag-->
|
|
||||||
{%- set section = get_section(path="newsroom/_index.md") %}
|
|
||||||
{% for page in section.pages %}
|
|
||||||
{% if page.extra.isFeatured %}
|
|
||||||
{%- set_global featured = page %}
|
|
||||||
{% break %}
|
|
||||||
{% endif %}
|
|
||||||
{% if not featured %}
|
|
||||||
{%- set_global featured = section.pages[0] %}
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
{% include "partials/featuredNews.html" %}
|
|
||||||
|
|
||||||
<div class="flex flex-col md:flex-row container mx-auto my-6">
|
|
||||||
{% include "partials/newsPosts.html" %}
|
|
||||||
{% include "partials/newsSidebar.html" %}
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
{% endblock content %}
|
|
@ -1,18 +0,0 @@
|
|||||||
{% extends "_default/base.html" %}
|
|
||||||
<!-- partners template
|
|
||||||
the template for displaying the partners page.
|
|
||||||
consists of a featured partners row,
|
|
||||||
a paginated list of posts (sorted by date),
|
|
||||||
and a side nav for category and featured post navigation
|
|
||||||
-->
|
|
||||||
{% block content %}
|
|
||||||
<main>
|
|
||||||
<!--sets global featured variable as the most recent post with the isFeatured tag-->
|
|
||||||
{%- set section = get_section(path="partners/_index.md") %}
|
|
||||||
{% include "partials/intro.html" %}
|
|
||||||
<div class="flex flex-col md:flex-row container mx-auto my-8">
|
|
||||||
{% include "partials/partnersCards.html" %}
|
|
||||||
{% include "partials/partnersSidebar.html" %}
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
{% endblock content %}
|
|
@ -1,83 +0,0 @@
|
|||||||
{% extends "_default/base.html" %}
|
|
||||||
<!-- partners template
|
|
||||||
the template for displaying the partners page.
|
|
||||||
consists of a featured partners row,
|
|
||||||
a paginated list of posts (sorted by date),
|
|
||||||
and a side nav for category and featured post navigation
|
|
||||||
-->
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<!--sets global featured variable as the most recent post with the isFeatured tag-->
|
|
||||||
{%- set section = get_section(path="people/_index.md") %}
|
|
||||||
<div class="container mx-auto">
|
|
||||||
{# {% include "partials/filter_bar.html" %} #}
|
|
||||||
<div class="text-center main-title px-0 md:w-full">
|
|
||||||
<h1
|
|
||||||
class="tracking-tight text-5xl text-left sm:text-3xl md:text-4xl lg:text-5xl fw-500 leading-snug font-normal mb-10"
|
|
||||||
>
|
|
||||||
{% set path_array = current_path | split(pat="/") %}
|
|
||||||
{% set taxonomy = path_array[1] %}
|
|
||||||
{% set category = path_array[2] %}
|
|
||||||
{{category | replace(from='-', to=' ' ) | title}}
|
|
||||||
</h1>
|
|
||||||
<div>
|
|
||||||
<div class="mt-12 grid gap-5 max-w-lg mx-auto lg:grid-cols-2 xl:grid-cols-4 lg:max-w-none">
|
|
||||||
{%- for page in paginator.pages %}
|
|
||||||
{% if "Engineering" == "Engineering"%}
|
|
||||||
{% include "partials/personCard.html" %}
|
|
||||||
{%endif%} {%- endfor %}
|
|
||||||
</div>
|
|
||||||
<hr class="mt-6" />
|
|
||||||
<p class="text-center text-sm mt-2 mb-16">
|
|
||||||
{% if paginator.previous %}
|
|
||||||
<a
|
|
||||||
class="border-transparent"
|
|
||||||
aria-label="First page"
|
|
||||||
href="{{ paginator.first }}"
|
|
||||||
>{% include "partials/icons/svgPrevPageIcon.html" %}{% include
|
|
||||||
"partials/icons/svgPrevPageIcon.html" %}</a
|
|
||||||
>
|
|
||||||
|
|
||||||
<a
|
|
||||||
class="border-transparent"
|
|
||||||
aria-label="Previous page"
|
|
||||||
href="{{ paginator.previous }}"
|
|
||||||
>{% include "partials/icons/svgPrevPageIcon.html" %}</a
|
|
||||||
>
|
|
||||||
|
|
||||||
{% else %} {%
|
|
||||||
include "partials/icons/svgFirstPageIcon.html" %}{% include
|
|
||||||
"partials/icons/svgFirstPageIcon.html" %}
|
|
||||||
{% include
|
|
||||||
"partials/icons/svgFirstPageIcon.html" %}
|
|
||||||
|
|
||||||
{% endif %} {% if
|
|
||||||
paginator.next %}
|
|
||||||
<a
|
|
||||||
class="border-transparent"
|
|
||||||
aria-label="Next page"
|
|
||||||
href="{{ paginator.next }}"
|
|
||||||
>{% include "partials/icons/svgNextPageIcon.html" %}</a
|
|
||||||
>
|
|
||||||
|
|
||||||
<a
|
|
||||||
class="border-transparent"
|
|
||||||
aria-label="Last page"
|
|
||||||
href="{{ paginator.last }}"
|
|
||||||
>{% include "partials/icons/svgNextPageIcon.html" %}{% include
|
|
||||||
"partials/icons/svgNextPageIcon.html" %}</a
|
|
||||||
>
|
|
||||||
{% else %} {% include "partials/icons/svgLastPageIcon.html" %}
|
|
||||||
{% include
|
|
||||||
"partials/icons/svgLastPageIcon.html" %}{% include
|
|
||||||
"partials/icons/svgLastPageIcon.html" %} {% endif %}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
{% endblock content %}
|
|
@ -1,6 +0,0 @@
|
|||||||
{% extends "_default/base.html" %}
|
|
||||||
{% block content %}
|
|
||||||
|
|
||||||
{% include "partials/form.html" %}
|
|
||||||
|
|
||||||
{% endblock content %}
|
|
@ -1,8 +0,0 @@
|
|||||||
{% extends "_default/base.html" %}
|
|
||||||
{% block content %}
|
|
||||||
|
|
||||||
{% include "partials/solutions/hero.html" %}
|
|
||||||
{% include "partials/solutions/what.html" %}
|
|
||||||
{% include "partials/solutions/portfolio.html" %}
|
|
||||||
{% include "partials/home/cta.html" %}
|
|
||||||
{% endblock content %}
|
|
@ -1,39 +0,0 @@
|
|||||||
{% extends "_default/base.html" %}
|
|
||||||
{% block content %}
|
|
||||||
|
|
||||||
{% include "partials/hero/myhero1.html" %}
|
|
||||||
{% include "partials/hero/myhero3.html" %}
|
|
||||||
{% include "partials/hero/myhero5.html" %}
|
|
||||||
{% include "partials/hero/myhero2.html" %}
|
|
||||||
{% include "partials/hero/myhero6.html" %}
|
|
||||||
{% include "partials/hero/myhero7.html" %}
|
|
||||||
{% include "partials/feature/feature1.html" %}
|
|
||||||
{% include "partials/feature/feature2.html" %}
|
|
||||||
{% include "partials/feature/feature3.html" %}
|
|
||||||
{% include "partials/feature/feature4.html" %}
|
|
||||||
{% include "partials/feature/feature5.html" %}
|
|
||||||
{% include "partials/feature/feature6.html" %}
|
|
||||||
{% include "partials/home/cta.html" %}
|
|
||||||
{% include "partials/action/video.html" %}
|
|
||||||
{% include "partials/action/web4tools.html" %}
|
|
||||||
{% include "partials/action/action.html" %}
|
|
||||||
{% include "partials/about/about5.html" %}
|
|
||||||
{% include "partials/home/cta.html" %}
|
|
||||||
{% include "partials/about/about6.html" %}
|
|
||||||
{% include "partials/hero/hero1.html" %}
|
|
||||||
{% include "partials/hero/hero2.html" %}
|
|
||||||
{% include "partials/hero/hero3.html" %}
|
|
||||||
{% include "partials/hero/hero4.html" %}
|
|
||||||
{% include "partials/hero/hero5.html" %}
|
|
||||||
{% include "partials/hero/hero6.html" %}
|
|
||||||
{% include "partials/hero/hero7.html" %}
|
|
||||||
{% include "partials/hero/hero8.html" %}
|
|
||||||
{% include "partials/hero/hero9.html" %}
|
|
||||||
{% include "partials/why/hero.html" %}
|
|
||||||
{% include "partials/why/reason.html" %}
|
|
||||||
{% include "partials/why/timeline.html" %}
|
|
||||||
{% include "partials/why/matters.html" %}
|
|
||||||
{% include "partials/why/values.html" %}
|
|
||||||
{% include "partials/why/team.html" %}
|
|
||||||
{% include "partials/home/cta.html" %}
|
|
||||||
{% endblock content %}
|
|
@ -1,12 +0,0 @@
|
|||||||
{% extends "_default/base.html" %}
|
|
||||||
{% block content %}
|
|
||||||
{% include "partials/about/about1.html" %}
|
|
||||||
{% include "partials/about/about2.html" %}
|
|
||||||
{% include "partials/about/about3.html" %}
|
|
||||||
{% include "partials/about/about4.html" %}
|
|
||||||
{% include "partials/about/about5.html" %}
|
|
||||||
{% include "partials/about/about6.html" %}
|
|
||||||
{% include "partials/hero/myhero7.html" %}
|
|
||||||
|
|
||||||
|
|
||||||
{% endblock content %}
|
|
Loading…
Reference in New Issue
Block a user