Initial commit

This commit is contained in:
nemunaire 2020-05-04 13:25:05 +02:00
commit ff41d5ea95
Signed by: nemunaire
GPG key ID: 842807A84573CC96
28 changed files with 908 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{{ if isset .Site.Params "carousel" }}
{{ if gt (len .Site.Params.carousel) 0 }}
<div class="anchor" id="features"></div>
<div class="carousel text-light pt-5 pb-3 d-flex flex-row justify-content-around">
{{ range sort .Site.Params.carousel "weight" }}
<figure class="">
<a href="{{ .image }}">
<img class="rounded img-thumbnail" src="{{ .image }}" alt="{{ .title }}" style="max-height: 300px;">
</a>
<figcaption class="mt-2 text-center">{{ .description | markdownify }}</figcaption>
</figure>
{{ end }}
</div>
{{ end }}
{{ end }}