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

education.html « accordion « partials « layouts - github.com/darshanbaral/aafu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 463c8c839ee3213b5cb9b132d54c7c3f726d244d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ range .Site.Params.education.list }}
<dl>
  <dt>{{ .degree }}</dt>
  <dd class="mb-0 ml-3">{{ .dates }} &middot; {{ .college }}</dd>
  {{ if .thesis_url }}
  <dd class="mb-0 ml-4">
    Thesis:
    <a href="{{ .thesis_url }}"
      ><i>{{ .thesis_title }}</i></a
    >
  </dd>
  {{ end }}
</dl>
{{ end }}