You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
617 B
27 lines
617 B
{{ define "main" }}
|
|
<section>
|
|
|
|
{{- with (.Resources.GetMatch "avatar") }}
|
|
{{- partial "image.html"
|
|
(dict
|
|
"image" .
|
|
"alt" .Params.alt
|
|
"sizes" (slice 320 500)
|
|
"classes" (slice "shadow" "author")) }}
|
|
{{- end }}
|
|
|
|
<div>
|
|
<h1>{{ .Params.name }}</h1>
|
|
<a href={{ .Params.projects }}>Projects</a>
|
|
<span> | </span>
|
|
<a href="mailto:{{ .Params.email }}">{{ .Params.email}}</a>
|
|
</div>
|
|
|
|
</section>
|
|
{{ .Content }}
|
|
<section class="article-group author-articles">
|
|
{{- range .Data.Pages }}
|
|
{{ partial "article.html" . }}
|
|
{{- end }}
|
|
</section>
|
|
{{ end }}
|
|
|