helloworldhellwoorldeofoehfafihuofijoahfgyioafjpafhzguirg uvuizerurg_ozerygvoiuhrgreqiogrehh

This commit is contained in:
Gzod01 2023-10-22 10:14:09 +02:00
parent 3379242f31
commit c00a301523
79 changed files with 1614 additions and 3 deletions

View file

@ -0,0 +1,27 @@
{{ if (isset site.Data "features") }}
{{ if gt (len site.Data.features) 0 }}
<div class="features">
{{ range (sort site.Data.features "weight") }}
<div class=item>
{{ if .url }}
<a href="{{ .url}}">
{{ end }}
<div class=icon>
<i class="{{ .icon }}"></i>
</div>
<div class=text>
<h3 class=title>
{{ .name }}
</h3>
<div class=description>
{{ .description | markdownify }}
</div>
</div>
{{ if .url }}
</a>
{{ end }}
</div>
{{ end }}
</div>
{{ end }}
{{ end }}