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

github.com/darshanbaral/sada.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/education.html')
-rw-r--r--layouts/partials/education.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/partials/education.html b/layouts/partials/education.html
new file mode 100644
index 0000000..2d83f5f
--- /dev/null
+++ b/layouts/partials/education.html
@@ -0,0 +1,14 @@
+<h3>{{ .Site.Params.education.title }}</h3>
+{{ range .Site.Params.education.list }}
+<dl>
+ <dt><i class="fas fa-graduation-cap"></i> {{ .degree }}</dt>
+ <dd class="mb-0 ml-3">{{ .college }}</dd>
+ <dd class="mb-0 ml-3">{{ .dates }}</dd>
+ {{ if .thesis_link }}
+ <dd class="mb-0 ml-4">
+ Thesis:
+ <a class="text-warning" href="{{ .thesis_link }}"><i>{{ .thesis_title }}</i></a>
+ </dd>
+ {{ end }}
+</dl>
+{{ end }} \ No newline at end of file