Files
landing_page/qdrant-landing/themes/qdrant-2024/layouts/partials/customers-case-studies.html
T
nastyapashandtrean 21776375a9 [WIP] New Pages (#873)
* Add Partnerspage

* fix

* fix padding

* tablet get-started-small update

* Add Customers page

* incorparated site-header partial

* fix

* Add community page (#886)

* Add community page

* site-header partial on the comunity page

---------

Co-authored-by: trean <trean.mi@gmail.com>

* Add Brand-Resources and Subscribe pages (#930)

* add Brand resources page

* add Subscribe page

* Add Qdrant for startups page (#934)

* Add Qdrant for startups page

* improve accordion and link to the form

* fix

* Add Stars page (#890)

* Add Stars page

* site-header partial on the stars page

* overlay z-index fix

---------

Co-authored-by: trean <trean.mi@gmail.com>

* new pages content update and accompanying css and html changes (#943)

* new pages content update and accompanying css and html changes

* format, removed comment, fix

* fixes

* subscribe page hubspot form (#946)

* brand resources content (#947)

* Stars page content (#945)

* stars page content update

* stars images format, replaced stars hero image

* uncommented stars menu link

* update stats: github stars and discord members number

* photo

* stars content upd

* stars list update

* Startup program content (#961)

* startup program hubspot form

* form fixes

* another form, some fixes

* content upd

* stars

* temp build options for the startups program page

---------

Co-authored-by: trean <trean.mi@gmail.com>
2024-06-17 15:56:32 +02:00

28 lines
1.1 KiB
HTML

{{ with (.Site.GetPage "/customers/customers-case-studies") }}
<section class="customers-case-studies">
<div class="container">
{{ partial "case-study" . }}
<div class="customers-case-studies__cards row g-4 gx-lg-4 gy-lg-6">
<section class="bg-mid-gray">
{{ with (.Site.GetPage "/customers/logo-cards-2") }}
{{ partial "logo-cards" . }}
{{ end }}
</section>
{{ range .Params.cases }}
<div class="customers-case-studies__card col-12 col-md-6 col-lg-4">
<div class="customers-case-studies__card-preview">
<img class="customers-case-studies__card-image" src="{{ .image.src }}" alt="{{ .image.alt }}" />
<img class="customers-case-studies__card-logo" src="{{ .logo.src }}" alt="{{ .logo.alt }}" />
</div>
<h6 class="customers-case-studies__card-title">{{ .title }}</h6>
<a class="customers-case-studies__card-link link link_xl" href="{{ .link.url }}">{{ .link.text }}</a>
</div>
{{ end }}
</div>
</div>
</section>
{{ end }}