The current Hugo theme for the beetbox.io website
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.
 
 

22 lines
524 B

{{ define "main" }}
<section>
{{- with .Resources.GetMatch "avatar" }}
<img class="shadow author" src="{{ .RelPermalink }}" alt="{{ .Params.alt }}"/>
{{- 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="author-articles">
{{- range .Data.Pages }}
{{ partial "article.html" . }}
{{- end }}
</section>
{{ end }}