2023-05-25 10:41:54 +00:00
|
|
|
{{ define "main" }}
|
2023-10-01 04:37:45 +00:00
|
|
|
<!-- Banner -->
|
|
|
|
{{ with .Params.banner }}
|
2023-11-08 17:01:29 +00:00
|
|
|
<section class="section section-0 pt-14 hero {{ with .class }}{{ . }}{{ end }}">
|
2023-10-01 04:37:45 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-center">
|
|
|
|
<div class="lg:col-7 mb-8 text-center">
|
|
|
|
<h1 class="mb-4">
|
|
|
|
{{ .title | markdownify }}
|
|
|
|
</h1>
|
2023-11-09 12:02:06 +00:00
|
|
|
<p class="mb-8 text-lg">
|
2023-10-01 04:37:45 +00:00
|
|
|
{{ .content | markdownify }}
|
|
|
|
</p>
|
|
|
|
{{ with .button }}
|
|
|
|
{{ if .enable }}
|
|
|
|
<a class="btn btn-primary" href="{{ .link | absURL }}">
|
|
|
|
{{ .label }}
|
|
|
|
<i class="fa fa-arrow-right pl-2"></i>
|
|
|
|
</a>
|
2023-05-25 10:41:54 +00:00
|
|
|
{{ end }}
|
2023-10-01 04:37:45 +00:00
|
|
|
{{ end }}
|
|
|
|
</div>
|
2024-01-17 07:58:19 +00:00
|
|
|
<div class="hero-img col-12">
|
|
|
|
{{ partial "image" (dict "Src" .image "Alt" "Banner image" "Loading" "eager" "Class" "mx-auto" "Size" "400x") }}
|
2023-05-25 10:41:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-10-01 04:37:45 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2024-01-18 18:17:44 +00:00
|
|
|
<!-- <svg width="100%" height="100%" id="svg" viewBox="0 0 1440 390" xmlns="http://www.w3.org/2000/svg" class="curve transition duration-300 ease-in-out delay-150"><path d="M 0,400 L 0,150 C 88.60714285714286,142.64285714285714 177.21428571428572,135.28571428571428 303,143 C 428.7857142857143,150.71428571428572 591.7499999999999,173.50000000000003 732,192 C 872.2500000000001,210.49999999999997 989.7857142857144,224.7142857142857 1104,217 C 1218.2142857142856,209.2857142857143 1329.1071428571427,179.64285714285717 1440,150 L 1440,400 L 0,400 Z" stroke="none" stroke-width="0" fill="#0d242e" fill-opacity="1" class="transition-all duration-300 ease-in-out delay-150 path-0" transform="rotate(-180 720 200)"></path></svg>-->
|
2024-01-17 07:58:19 +00:00
|
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
2023-10-01 04:37:45 +00:00
|
|
|
<!-- /Banner -->
|
|
|
|
|
|
|
|
<!-- Features -->
|
|
|
|
{{ range $i, $e:= .Params.features }}
|
2023-11-09 12:02:06 +00:00
|
|
|
<section class="section section-{{ add $i 1 }} {{ with .class }}{{ . }}{{ end }}">
|
2023-10-01 04:37:45 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row items-center justify-between">
|
|
|
|
<div
|
|
|
|
class="mb:md-0 {{ if not (modBool $i 2) }}
|
|
|
|
md:order-2
|
|
|
|
{{ end }} md:col-5 mb-6">
|
|
|
|
{{ partial "image" (dict "Src" .image "Alt" "feature image") }}
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="{{ if not (modBool $i 2) }}
|
|
|
|
md:order-1
|
|
|
|
{{ end }} md:col-7 lg:col-6">
|
2023-12-20 15:18:25 +00:00
|
|
|
<h2 class="mb-4 title">
|
2023-10-01 04:37:45 +00:00
|
|
|
{{ .title | markdownify }}
|
|
|
|
</h2>
|
2023-12-20 15:18:25 +00:00
|
|
|
<p class="mb-8">
|
2023-10-01 04:37:45 +00:00
|
|
|
{{ .content | markdownify }}
|
|
|
|
</p>
|
|
|
|
<ul>
|
|
|
|
{{ range .bulletpoints }}
|
|
|
|
<li class="relative mb-4 pl-6">
|
|
|
|
<i class="fa fa-check absolute left-0 top-1.5"></i>
|
|
|
|
{{ . | markdownify }}
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ with .button }}
|
|
|
|
{{ if .enable }}
|
|
|
|
<a class="btn btn-primary mt-6" href="{{ .link | absURL }}">
|
|
|
|
{{ .label }}
|
|
|
|
<i class="fa fa-arrow-right pl-2"></i>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
|
|
|
<!-- /Features -->
|
2023-05-25 10:41:54 +00:00
|
|
|
|
2023-10-01 04:37:45 +00:00
|
|
|
<!-- Testimonials -->
|
|
|
|
{{ with site.GetPage "sections/testimonial" }}
|
|
|
|
{{ if .Params.enable }}
|
|
|
|
<section class="section">
|
2023-05-25 10:41:54 +00:00
|
|
|
<div class="container">
|
2023-10-01 04:37:45 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="md:col-10 lg:col-8 xl:col-6 mx-auto mb-12 text-center">
|
2023-05-25 10:41:54 +00:00
|
|
|
<h2 class="mb-4">
|
2023-10-01 04:37:45 +00:00
|
|
|
{{ .Title | markdownify }}
|
2023-05-25 10:41:54 +00:00
|
|
|
</h2>
|
2023-10-01 04:37:45 +00:00
|
|
|
<p>
|
|
|
|
{{ .Params.description | markdownify }}
|
2023-05-25 10:41:54 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
2023-10-01 04:37:45 +00:00
|
|
|
<div class="col-12">
|
|
|
|
<div class="swiper testimonial-slider">
|
|
|
|
<div class="swiper-wrapper">
|
|
|
|
{{ range .Params.testimonials }}
|
|
|
|
<div class="swiper-slide">
|
|
|
|
<div
|
|
|
|
class="bg-theme-light dark:bg-darkmode-theme-light rounded-lg px-7 py-10">
|
|
|
|
<div class="text-dark dark:text-white">
|
|
|
|
<svg
|
|
|
|
width="33"
|
|
|
|
height="20"
|
|
|
|
viewBox="0 0 33 20"
|
|
|
|
fill="none"
|
|
|
|
xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<path
|
|
|
|
d="M1.28375 19.41L0.79375 18.64C1.21375 17.0067 1.75042 15.07 2.40375 12.83C3.05708 10.5433 3.75708 8.28 4.50375 6.04C5.29708 3.75333 6.06708 1.77 6.81375 0.0899959H15.3538C14.9338 2.09666 14.4904 4.26667 14.0238 6.6C13.5571 8.88666 13.1371 11.15 12.7638 13.39C12.4371 15.5833 12.1571 17.59 11.9238 19.41H1.28375ZM31.69 0.0899959L32.18 0.859998C31.76 2.54 31.2233 4.5 30.57 6.74C29.9167 8.98 29.2167 11.2433 28.47 13.53C27.7233 15.77 26.9533 17.73 26.16 19.41H17.69C18.0167 17.9167 18.3433 16.33 18.67 14.65C18.9967 12.9233 19.3 11.22 19.58 9.54C19.9067 7.81333 20.1867 6.15667 20.42 4.57C20.7 2.93666 20.91 1.44333 21.05 0.0899959H31.69Z"
|
|
|
|
fill="currentColor" />
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
<blockquote class="mt-8">
|
|
|
|
{{ .content | markdownify }}
|
|
|
|
</blockquote>
|
|
|
|
<div class="mt-11 flex items-center">
|
2023-05-25 10:41:54 +00:00
|
|
|
<div class="text-dark dark:text-white">
|
2023-10-01 04:37:45 +00:00
|
|
|
{{ partial "image" (dict "Src" .avatar "Size" "50x50" "Class" "rounded-full" "Alt" .name) }}
|
2023-05-25 10:41:54 +00:00
|
|
|
</div>
|
2023-10-01 04:37:45 +00:00
|
|
|
<div class="ml-4">
|
|
|
|
<h3 class="h5 font-primary font-semibold">
|
|
|
|
{{ .name }}
|
|
|
|
</h3>
|
|
|
|
<p class="text-dark dark:text-white">
|
|
|
|
{{ .designation | markdownify }}
|
|
|
|
</p>
|
2023-05-25 10:41:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-10-01 04:37:45 +00:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
2023-05-25 10:41:54 +00:00
|
|
|
</div>
|
2023-10-01 04:37:45 +00:00
|
|
|
<div
|
|
|
|
class="testimonial-slider-pagination mt-9 flex items-center justify-center text-center"></div>
|
2023-05-25 10:41:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-10-01 04:37:45 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2023-05-25 10:41:54 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2023-10-01 04:37:45 +00:00
|
|
|
<!-- /Testimonials -->
|
2023-05-25 10:41:54 +00:00
|
|
|
{{ end }}
|