mirror of
https://github.com/apricote/apricote.de.git
synced 2026-01-13 12:51:00 +00:00
29 lines
644 B
HTML
29 lines
644 B
HTML
{{ $projects := $.Site.Data.resume.projects }} {{ range $projects }}
|
|
|
|
<div style="margin-bottom: 2em">
|
|
<div style="font-weight: 200">
|
|
{{ if not (isset . "endDate")}} {{ .startDate }} - Current {{ else }} {{
|
|
.startDate }} - {{ .endDate }} {{end}}
|
|
</div>
|
|
|
|
<div>
|
|
<a href="{{.url}}" target="_blank" style="font-weight: 600">{{ .name }}</a>
|
|
</div>
|
|
|
|
<div style="font-size: 0.8em">
|
|
{{ range .keywords}}
|
|
<code>{{.}}</code>
|
|
{{ end}}
|
|
</div>
|
|
|
|
<div>{{.summary | markdownify}}</div>
|
|
|
|
{{ if (isset . "highlights") }}
|
|
<ul>
|
|
{{ range .highlights }}
|
|
<li>{{.}}</li>
|
|
{{end}}
|
|
</ul>
|
|
{{end}}
|
|
</div>
|
|
{{ end }}
|