mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-07 09:02:29 +00:00
Add themes in-tree
This commit is contained in:
@@ -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 }}
|
Reference in New Issue
Block a user