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

github.com/darshanbaral/aafu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/accordion/education.html')
-rw-r--r--layouts/partials/accordion/education.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/partials/accordion/education.html b/layouts/partials/accordion/education.html
new file mode 100644
index 0000000..ade47be
--- /dev/null
+++ b/layouts/partials/accordion/education.html
@@ -0,0 +1,14 @@
+{{ range .Site.Params.education.list }}
+<dl>
+ <dt>{{ .degree }}</dt>
+ <dd class="mb-0 ml-3">{{ .dates }} &middot; {{ .college }}</dd>
+ {{ if .thesis_link }}
+ <dd class="mb-0 ml-4">
+ Thesis:
+ <a href="{{ .thesis_link }}"
+ ><i>{{ .thesis_title }}</i></a
+ >
+ </dd>
+ {{ end }}
+</dl>
+{{ end }}