education.html 406 B

12345678910111213141516171819
  1. {{ range .Site.Params.education.list }}
  2. <h4 style="text-decoration: underline;">{{ .degree }}</h4>
  3. <p {{ if .thesis_title }}class="mb-0" {{ end }}>
  4. {{- .dates }} &middot; {{ .college -}}
  5. </p>
  6. {{ if .thesis_title }}
  7. {{ if .thesis_url }}
  8. <p>
  9. Thesis:
  10. <a href="{{ .thesis_url }}"><i>{{ .thesis_title }}</i></a>
  11. </p>
  12. {{ else }}
  13. <p>
  14. Thesis: <i>{{ .thesis_title }}</i>
  15. </p>
  16. {{ end }}
  17. {{ end }}
  18. {{ end }}