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:
authorMERT BAKIR <2335694-mertbakir@users.noreply.gitlab.com>2022-02-12 20:08:22 +0300
committerMERT BAKIR <mertbakxr@gmail.com>2022-02-12 20:08:22 +0300
commitb45b6f224f7bdf80845a5949a97b757192bbebcc (patch)
tree951a5f180c1cfb61045be956a1f63a016e14e32a
parentc140d401bbc8d8edba6ac70de1630a40f60c8c06 (diff)
parentc4e32bbd14463a84c4f1ae304356dedb503d2583 (diff)
Merge branch 'master' into 'master'
Don't add empty line to education if there is no 'more' See merge request mertbakir/resume-a4!2
-rw-r--r--layouts/partials/section-education.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/section-education.html b/layouts/partials/section-education.html
index 5c9ca45..e6c6888 100644
--- a/layouts/partials/section-education.html
+++ b/layouts/partials/section-education.html
@@ -2,7 +2,7 @@
<div class="item">
<h2 class="item-title">{{ .name }}</h2>
<span>{{ .university }}</span><br>
- <span>{{ if .more }}{{ .more }}{{ end }}</span><br>
+ {{ if .more }}<span>{{ .more }}</span><br>{{ end }}
<span>{{ .date }}{{ if .gpa }} | GPA: {{ .gpa }}{{ end }}</span>
</div>
{{ end }}