web/themes/mauro/layouts/partials/education.html
Mauro Torrez 4db8e448b9
All checks were successful
continuous-integration/drone/push Build is passing
static theme include + languages setup
2020-05-06 01:52:41 -03:00

27 lines
584 B
HTML

{{ $data := index .Site.Data .Site.Language.Lang }}
{{ with $data.education }}
<section class="thirteen columns">
<h1>{{ .name }}</h1>
{{ range .source }}
<article>
<header>
<h1>{{ .title }}</h1>
<span>{{ .univ }}</span>
<span>
<address>{{ .place }}</address>
<time>{{ .date }}</time>
</span>
</header>
<p>
<em>
{{ with .type }}
{{ title . }}:
{{ end }}
{{ .description }}
</em>
</p>
</article>
{{ end }}
</section>
{{ end }}