Init Commit

This commit is contained in:
2026-05-18 11:46:02 +02:00
commit 2de3502fbc
382 changed files with 19583 additions and 0 deletions
@@ -0,0 +1,54 @@
{{/*
sectionId: Optional argument to override the default HTML id for this section. If not provided, the default id is used. */}}
{{ $sectionId := "experience-list-shortcode" }}
{{ with .Get "sectionId" }}
{{ $sectionId = . }}
{{ end }}
{{ $padding := .Get "padding" }}
{{ $title := .Get "title" | default "" }}
{{ $containerClass := "" }}
{{ if eq $padding "true" }}
{{ $containerClass = "container" }}
{{ end }}
<section {{if $sectionId}} id="{{ $sectionId }}"{{end}} class="section-experience section section--border-bottom rad-animation-group flex-grow-1 {{ $containerClass }}">
<div class="row flex-column-reverse flex-md-row rad-fade-down">
<div class="experience-list col-12 mt-5 mt-sm-0">
{{ if $title }}
<h2 class="section__title mb-4">{{ $title }}</h2>
{{ end }}
{{ $xp := (where .Site.RegularPages.ByDate "Type" "experience") }}
{{ $xpCount := len $xp }}
{{ range $index, $element := first $xpCount (sort $xp "Date" "desc") }}
<div class="experience row">
<div class="experience__header col-12 col-md-3 d-flex align-items-start">
{{ $img := resources.Get .Params.companyLogo }}
{{ with $img }}
{{ $imgWebp := $img.Resize (printf "%dx%d webp q75 Lanczos picture" $img.Width $img.Height) }}
<img src="{{ $imgWebp.RelPermalink }}" alt="{{ .Params.company }} logo"
class="experience__company-logo" loading="lazy">
{{ end }}
<div class="experience__meta">
<div class="experience__date">{{ .Params.duration }}</div>
<div class="experience__title">{{ .Params.jobTitle }}</div>
<div class="experience__company">{{ .Params.company }}. <span class="experience__location">
{{ .Params.location }}</span></div>
</div>
</div>
<div class="experience__description d-print-block col-12 col-md-9 mt-3 mt-md-0">
<h1>{{ .Params.title }}</h1>
{{ .Content | safeHTML }}
</div>
</div>
{{ if ne $index (sub $xpCount 1) }}
<!-- Separator between experiences for mobile -->
<hr class="d-block d-md-none my-4">
{{ end }}
{{ end }}
</div>
</div>
</section>