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:
Diffstat (limited to 'layouts/partials/section-education.html')
-rw-r--r--layouts/partials/section-education.html39
1 files changed, 36 insertions, 3 deletions
diff --git a/layouts/partials/section-education.html b/layouts/partials/section-education.html
index e6c6888..12b1440 100644
--- a/layouts/partials/section-education.html
+++ b/layouts/partials/section-education.html
@@ -1,8 +1,41 @@
+{{ $isOnSide := false }}
+{{ range .Params.side }}
+{{ if eq .feature "education" }}
+ {{ $isOnSide = true }}
+{{ end }}
+{{ end }}
+
{{ range .Data.education }}
<div class="item">
- <h2 class="item-title">{{ .name }}</h2>
- <span>{{ .university }}</span><br>
- {{ if .more }}<span>{{ .more }}</span><br>{{ end }}
+
+ {{- if and $.Params.education.location.show .location -}}
+ {{ if $isOnSide }}
+ <h2 class="item-title">{{ .university }}</h2>
+ <span>{{ .location }}</span><br>
+ {{- else -}}
+ <div class="flex-row">
+ <h2 class="item-title">{{ .university }}</h2>
+ <span class="soft-color">{{ .location }}</span>
+ </div>
+ {{- end -}}
+ {{- else -}}
+ <h2 class="item-title">{{ .university }}</h2>
+
+ {{- end -}}
+
+ <span>{{ .name }}</span><br>
+
+ {{- if .more -}}
+ {{- if .link -}}
+ <span><a href="{{ .link }}">{{ .more }}</a></span><br>
+ {{- else -}}
+ <span>{{ .more }}</span><br>
+ {{- end -}}
+ {{- end -}}
<span>{{ .date }}{{ if .gpa }} | GPA: {{ .gpa }}{{ end }}</span>
+
+ {{ if .details }}
+ {{- partial "markdown" .details }}
+ {{ end }}
</div>
{{ end }}