jlelse
/
Indieroad
Archived
1
Fork 0
This repository has been archived on 2020-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
Indieroad/layouts/partials/authorbox.html

16 lines
458 B
HTML

{{- if .Param "authorbox" }}
{{- with .Site.Author }}
<div class="authorbox p-author h-card">
{{- if .name }}
<div class="author-header">
<span class="author-name">{{ T "authorbox_name" }} {{ if .link }}<a href="{{ .link }}" class="p-name u-url" rel="me">{{ .name }}</a>{{ else }}<span class="p-name">{{ .name }}</span>{{ end }}</span>
</div>
{{- end }}
{{- with .bio }}
<div class="p-note">
{{ . }}
</div>
{{- end }}
</div>
{{- end }}
{{- end }}