resume-a4/layouts/partials/section-education.html

9 lines
260 B
HTML
Raw Normal View History

{{ range .Data.education }}
<div class="item">
<h2 class="item-title">{{ .name }}</h2>
<span>{{ .university }}</span><br>
2021-10-23 01:11:38 +02:00
<span>{{ if .more }}{{ .more }}{{ end }}</span><br>
<span>{{ .date }}{{ if .gpa }} | GPA: {{ .gpa }}{{ end }}</span>
</div>
{{ end }}