Archived
1
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

21 lines
597 B
HTML
Raw Normal View History

2019-09-03 15:50:00 +00:00
{{- if .Param "authorbox" }}
{{- with .Site.Author }}
<div class="authorbox p-author h-card">
2019-12-04 10:00:15 +00:00
{{ if .avatar }}
<figure class="author-avatar">
<img class="u-photo" alt="{{ .name }}" src="{{ .avatar | relURL }}">
</figure>
{{ end }}
{{ if .name }}
2019-09-03 15:50:00 +00:00
<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>
2019-12-04 10:00:15 +00:00
{{ end }}
{{ with .bio }}
2019-09-03 15:50:00 +00:00
<div class="p-note">
{{ . }}
</div>
2019-12-04 10:00:15 +00:00
{{ end }}
2019-09-03 15:50:00 +00:00
</div>
{{- end }}
{{- end }}