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

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