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--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 }}