Initial commit

This commit is contained in:
2023-04-13 14:26:29 +00:00
commit f2b72f5203
98 changed files with 3266 additions and 0 deletions

23
layouts/partials/cta.html Normal file
View File

@@ -0,0 +1,23 @@
<!-- call to action -->
{{ if site.Data.homepage.cta.enable }}
{{ with site.Data.homepage.cta }}
<section class="py-4 bg-gradient position-relative">
<img src="{{ .overlayImage | absURL }}" class="img-fluid overlay-image" alt="">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-7">
<h2 class="text-white">{{ .title | markdownify }}</h2>
<p class="text-white">{{ .content | markdownify }}</p>
{{ with .button }}
<a href="{{ .link | absURL }}" class="btn btn-light">{{ .label }}</a>
{{ end }}
</div>
<div class="col-lg-4 col-md-5 position-relative">
<img class="cta-image" src="{{ .image | absURL }}" alt="">
</div>
</div>
</div>
</section>
{{ end }}
{{ end }}
<!-- /call to action -->