personal-website/layouts/cv/section.html
Adora Laura Kalb 0becfc3931
All checks were successful
ci/woodpecker/push/deploy-rsync Pipeline was successful
host cv on my own site
2024-07-15 11:03:40 +02:00

18 lines
473 B
HTML

{{ define "page" }}
<content>
<h1>{{ .Title }}</h1>
<p>{{ .Content }}</p>
<h2>Experience</h2>
{{ range .Pages.ByWeight.Reverse }}
<div class="section-page-item">
<h3>{{ .Params.position }} @ {{ .Params.company }}</h3>
<div class="details">
<time class="float-left">
{{ .Params.begin }} to {{ .Params.end | default "now" }}
</time>
</div>
{{ .Content }}
</div>
{{ end }}
</content>
{{ end }}