Add themes in-tree

This commit is contained in:
Dave Gallant
2024-01-07 08:49:07 -05:00
parent a5a09666f5
commit 604f3aaa4c
158 changed files with 19674 additions and 47 deletions

View File

@@ -0,0 +1,35 @@
{{ $cv := index $.Site.Data.json_resume $.Site.Language.Lang }}
{{ with $cv.volunteer }}
<div class="jr__list jr-volunteer__list">
{{ range . }}
<div class="jr__item jr-volunteer__item">
<div class="jr__item-meta">
<div class="jr-volunteer__position">{{ .position }}</div>
{{ partial "json-resume/duration.html" (dict "context" . "site" $.Site) }}
{{ if .organization }}
<div class="jr-volunteer__organization">
{{ if .url }}
<a href="{{ .url }}">{{ .organization }}</a>
{{ else }}
<span>{{ .organization }}</span>
{{ end }}
</div>
{{ end }}
</div>
<div class="jr__item-content">
{{ with .summary }}
<p class="jr-volunteer__summary">{{ . }}</p>
{{ end }}
{{ with .highlights }}
<ul class="jr-volunteer__highlights">
{{ range . }}
<li>{{ . }}</li>
{{ end }}
</ul>
{{ end }}
</div>
</div>
{{ end }}
</div>
{{ end }}