omegamma/layouts/shortcodes/previewSkills.html

51 lines
1.6 KiB
HTML
Raw Normal View History

<div class="grid center">
2021-09-26 15:39:36 +00:00
{{ $blocks := index $.Site.Data.skills (.Get 0) }}
2021-09-28 14:47:14 +00:00
{{ $embedIcon := .Get 1 }}
2021-09-26 15:39:36 +00:00
{{ range $blocks }}
<div class="padding-container">
<div class="block-preview label expand">
<h2 class="flex">
2021-09-28 14:47:14 +00:00
&nbsp;{{ if $embedIcon }}
{{ $scratch := newScratch }}
{{ $scratch.Set "icn" "/icons/skills/" }}
{{ $scratch.Add "icn" .Icon }}
{{ $scratch.Add "icn" ".svg" }}
<span class="icon-larger-text">{{ partial "inline-svg.html" ($scratch.Get "icn") }}</span>
{{ else }}
<img src="/icons/skills/{{ .Icon }}.svg" loading="lazy" class="icon-larger-text" alt=""/>
{{ end }} {{ .Name }}
2021-09-26 15:39:36 +00:00
</h2>
{{ if .WorkedWith }}
<p>{{ i18n "workedWith" }} {{ .WorkedWith }}</p>
{{ end }}
{{ if .Properties }}
<p>{{ i18n "properties" }} {{ .Properties }}</p>
{{ end }}
<p >{{ i18n .Text | markdownify }}</p>
{{ if .RelevantSoft }}
<p class="reduced-vertical-margin"><b>{{ i18n "relevantSoftware" }}</b></p>
<div class="grid flex">
{{ $scratch := newScratch }}
{{ range .RelevantSoft }}
{{ $scratch.Set "img" "/icons/apps/" }}
{{ $scratch.Add "img" (lower .) }}
{{ $scratch.Add "img" ".svg" }}
{{ $scratch.Set "url" "https://apps.ad5001.eu/" }}
{{ $scratch.Add "url" (lower .) }}
{{ $scratch.Add "url" "/" }}
{{ $scratch.Add "relevant" (slice (dict "Image" ($scratch.Get "img") "Title" . "URL" ($scratch.Get "url") "Tag" true)) }}
{{ end }}
{{ partial "links.html" ($scratch.Get "relevant") }}
</div>
<br>
2021-09-26 15:39:36 +00:00
{{ end }}
2021-09-28 14:47:14 +00:00
{{ if .Links }}
2021-09-26 15:39:36 +00:00
<div class="grid flex-right">&nbsp;
{{ partial "links.html" .Links }}
</div>
2021-09-28 14:47:14 +00:00
{{ end }}
2021-09-26 15:39:36 +00:00
</div>
</div>
{{ end }}
</div>