www.byjp.me/layouts/partials/book.html
2023-07-27 22:53:26 +01:00

17 lines
555 B
HTML

<figure class="book">
<a href="{{ .url }}" target="_blank" title="Open book details">
{{ $title := .title }}
{{ with .cover }}
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="The cover of the book {{ $title }}">
{{ end}}
</a>
<figcaption>
<a href="{{ .url }}" target="_blank" title="Open book details">{{ .title }}</a><br />
<span class="authors">
{{ range .authors }}
<a href="{{ .url }}" target="_blank">{{ .name }}</a>
{{ end }}
</span>
</figcaption>
</figure>