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:
authormertbakir <2335694-mertbakir@users.noreply.gitlab.com>2021-10-23 02:11:38 +0300
committermertbakir <mertbakxr@gmail.com>2021-10-23 02:53:23 +0300
commita67e0f4bc91b0baec701d50cc091bd4fb78da2bc (patch)
treee83a40d31f021ca67b13e2bad6950af30b7eda5b
parent1ed45a6fead4dfaf4a803a433e173ecf22b8f8f7 (diff)
Update section-education
-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 }}