All checks were successful
continuous-integration/drone/push Build is passing
27 lines
584 B
HTML
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 }}
|