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>2023-12-24 15:31:52 +0300
committermertbakir <2335694-mertbakir@users.noreply.gitlab.com>2023-12-24 15:31:52 +0300
commit7ed38f0876ac7af2fb79847737bde13421a8f3f2 (patch)
tree6a953c21af817b61c3e91a5dfda316aca65c27cb
parent0341cded78f2f4e5a313fab07fb927dcc042d22f (diff)
Update layout educationHEADmaster
-rw-r--r--layouts/partials/section-education.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/layouts/partials/section-education.html b/layouts/partials/section-education.html
index 44c6283..dc4977b 100644
--- a/layouts/partials/section-education.html
+++ b/layouts/partials/section-education.html
@@ -27,20 +27,21 @@
{{ $useFontAwesome := $.Params.education.useFontAwesome | default $.Params.useFontAwesome }}
{{ $noExternalIcon := not ($.Params.education.externalLinkIcon | default $.Params.externalLinkIcon) }}
+
+ <span>{{ .date }}{{ if .gpa }} | GPA: {{ .gpa }}{{ end }}</span>
{{- if .more -}}
{{- if .link -}}
{{- if $useFontAwesome -}}
- <span><a class="no-external-icon" href="{{ .link }}">{{ .more }}</a></span>
+ <br><span><a class="no-external-icon" href="{{ .link }}">{{ .more }}</a></span>
<i class="fas fa-link"></i><br>
{{- else -}}
<span><a class="{{ if $noExternalIcon }}no-external-icon{{ end }}" href="{{ .link }}">{{ .more }}</a></span><br>
{{- end -}}
{{- else -}}
- <span>{{ .more }}</span><br>
+ <span>{{ .more }}</span>
{{- end -}}
{{- end -}}
- <span>{{ .date }}{{ if .gpa }} | GPA: {{ .gpa }}{{ end }}</span>
-
+
{{ if .details }}
{{- partial "markdown" .details }}
{{ end }}