Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--exampleSite/data/education.yaml1
-rw-r--r--layouts/partials/section-education.html1
2 files changed, 2 insertions, 0 deletions
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 @@
<div class="item">
<h2 class="item-title">{{ .name }}</h2>
<span>{{ .university }}</span><br>
+ <span>{{ if .more }}{{ .more }}{{ end }}</span><br>
<span>{{ .date }}{{ if .gpa }} | GPA: {{ .gpa }}{{ end }}</span>
</div>
{{ end }}