mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-10 18:32:28 +00:00
Add themes in-tree
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
{{ $cv := index $.Site.Data.json_resume $.Site.Language.Lang }}
|
||||
{{ with $cv.work }}
|
||||
<div class="jr__list jr-work__list">
|
||||
{{ range . }}
|
||||
<div class="jr__item jr-work__item">
|
||||
<div class="jr__item-meta">
|
||||
<div class="jr-work__position">{{ .position }}</div>
|
||||
{{ partial "json-resume/duration.html" (dict "context" . "site" $.Site) }}
|
||||
{{ if or .name .location }}
|
||||
<div class="jr-work__name">
|
||||
{{ if .name }}
|
||||
{{ if .url }}
|
||||
<a href="{{ .url }}">
|
||||
{{ .name }}
|
||||
</a>
|
||||
{{ else }}
|
||||
<span>{{ .name }}</span>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ with .description }}
|
||||
<span>—</span>
|
||||
<span class="jr-work__description">{{ . }}</span>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
{{ with .location }}
|
||||
<div class="jr-work__location">{{ . }}</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<div class="jr__item-content">
|
||||
{{ with .summary }}
|
||||
<p class="jr-work__summary">{{ . }}</p>
|
||||
{{ end }}
|
||||
{{ with .highlights }}
|
||||
<ul class="jr-work__highlights">
|
||||
{{ range . }}
|
||||
<li>{{ . }}</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
Reference in New Issue
Block a user