mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-07 00:58:13 +00:00
33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
{{ $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 }}
|