resume-a4/layouts/partials/education.html

10 lines
300 B
HTML
Raw Normal View History

2020-09-01 00:03:58 +02:00
<div class="section">
<h1 class="section-title">Education</h1>
{{ range .Site.Data.education }}
<div class="item">
<h3 class="item-title">{{ .name }}</h3>
<span>{{ .university }}</span><br>
<span>{{ .date }} | GPA: {{ .gpa }}</span>
</div>
{{ end }}
</div>