Skip to content

Instantly share code, notes, and snippets.

@connorrothschild
Created August 21, 2020 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save connorrothschild/d2d5c5bf9627dc5b24ba5fa1bf70dcf6 to your computer and use it in GitHub Desktop.
Save connorrothschild/d2d5c5bf9627dc5b24ba5fa1bf70dcf6 to your computer and use it in GitHub Desktop.
<div class="row">
{{ with $person.interests }}
<div class="col-md-5">
<h3>{{ i18n "interests" | markdownify }}</h3>
<ul class="ul-interests">
{{ range . }}
<li>{{ . | markdownify | emojify }}</li>
{{ end }}
</ul>
</div>
{{ end }}
{{ with $person.education }}
<div class="col-md-7">
<h3>{{ i18n "education" | markdownify }}</h3>
<ul class="ul-edu fa-ul">
{{ range .courses }}
<li>
<i class="fa-li fas fa-graduation-cap"></i>
<div class="description">
<p class="course">{{ .course }}{{ with .year }}, {{ . }}{{ end }}</p>
<p class="institution">{{ .institution }}</p>
</div>
</li>
{{ end }}
</ul>
</div>
{{ end }}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment