summaryrefslogtreecommitdiff
path: root/themes/new_theme/layouts/partials/authorbox.html
blob: cfd09c55433fc24dc5e0975f9ddfe4a7acf56120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{- if .Site.Params.authorbox }}
<div class="authorbox clearfix">
	<figure class="authorbox__avatar">
		<img alt="{{ .Site.Author.name }} avatar" src="{{ .Site.Author.avatar | absURL }}" class="avatar" height="90" width="90">
	</figure>
	<div class="authorbox__header">
		<span class="authorbox__name">About {{ .Site.Author.name }}</span>
	</div>
	<div class="authorbox__description">
		{{ .Site.Author.bio }}
	</div>
</div>
{{- end }}