Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/about/education.html')
-rw-r--r--layouts/partials/about/education.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/layouts/partials/about/education.html b/layouts/partials/about/education.html
new file mode 100644
index 0000000..f642061
--- /dev/null
+++ b/layouts/partials/about/education.html
@@ -0,0 +1,16 @@
+{{ if .Params.education }}
+<h2 style="border-bottom: solid 3px; text-transform: uppercase;">
+ <i>{{ partial "icons/graduationCap" . }}</i>Education
+</h2>
+
+{{ range sort .Params.education "date" "desc" }}
+<p>{{ .date }}. {{ .title }}. {{ .major}}. {{ .institution }}</p>
+{{ if .project }}
+<p style="margin-top: -1em; margin-left: 1em;">
+ {{ .projectTitle}} - {{if .projectURL }}
+ <a href="{{ .projectURL }}">{{ .project }}</a>
+ {{ else }}
+ <u>{{ .project }}</u>
+ {{ end }}
+</p>
+{{ end }} {{ end }} {{ end }}