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,32 @@
|
||||
{{ $cv := index $.Site.Data.json_resume $.Site.Language.Lang }}
|
||||
{{ with $cv.education }}
|
||||
<div class="jr__list jr-education__list">
|
||||
{{ range . }}
|
||||
<div class="jr__item jr-education__item">
|
||||
<div class="jr__item-meta">
|
||||
<div class="jr-education__area">{{ .area }} ({{ .studyType }})</div>
|
||||
{{ partial "json-resume/duration.html" (dict "context" . "site" $.Site) }}
|
||||
{{ if .institution }}
|
||||
<div class="jr-education__institution">
|
||||
{{ if .url }}
|
||||
<a href="{{ .url }}">{{ .institution }}</a>
|
||||
{{ else }}
|
||||
<span>{{ .institution }}</span>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
<p class="jr-education__score">
|
||||
{{ .score }}
|
||||
</p>
|
||||
{{ with .courses }}
|
||||
<ul class="jr-education__courses">
|
||||
{{ range . }}
|
||||
<li>{{ . }}</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
Reference in New Issue
Block a user