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

education.html « partials « layouts - github.com/darshanbaral/sada.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d83f5f5cbb7c62dd29eb85229d8041c32f443a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 }}