diff --git a/exampleSite/data/education.yaml b/exampleSite/data/education.yaml index abbc9cf..10f96e3 100644 --- a/exampleSite/data/education.yaml +++ b/exampleSite/data/education.yaml @@ -1,5 +1,6 @@ - name: "Msc. Industrial Engineering" university: "Yildiz Technical University" + more: "English - with Thesis" # Optional field, if you want to add a non-standard line. date: "2019- 2021" gpa: "3.71 / 4.00" diff --git a/layouts/partials/section-education.html b/layouts/partials/section-education.html index 80e71eb..5c9ca45 100644 --- a/layouts/partials/section-education.html +++ b/layouts/partials/section-education.html @@ -2,6 +2,7 @@

{{ .name }}

{{ .university }}
+ {{ if .more }}{{ .more }}{{ end }}
{{ .date }}{{ if .gpa }} | GPA: {{ .gpa }}{{ end }}
{{ end }}