16 lines
377 B
HTML
16 lines
377 B
HTML
|
<h3>
|
||
|
<i class="fas fa-book"></i>
|
||
|
{{ .Site.Params.education.title }}
|
||
|
{{ range .Site.Params.education.list }}
|
||
|
</h3>
|
||
|
<dl>
|
||
|
<dt>
|
||
|
{{ .degree }}
|
||
|
{{ if eq .grad "yes" }}
|
||
|
<i class="fas fa-graduation-cap"></i>
|
||
|
{{ end }}
|
||
|
</dt>
|
||
|
<dd class="mb-0 ml-3">{{ .college }}</dd>
|
||
|
<dd class="mb-0 ml-3">{{ .dates }}</dd>
|
||
|
</dl>
|
||
|
{{ end }}
|