sillon-fictionnel/themes/writeonly/layouts/partials/shared/post-isbn.html
Alexandre Dulaunoy d9eca5e842
chg: [layout - post] Ajout de l'ISBN si disponible.
Pour l'instant je fais un lien vers Worldcat mais cela ne semble
pas la solution la plus ouverte/libre.

Ref: https://annas-blog.org/blog-isbndb-dump-how-many-books-are-preserved-forever.html
2024-02-18 09:34:15 +01:00

8 lines
289 B
HTML

<div class="text-center text-muted mb-1">
{{ with .Params.ISBN }}
<span class="d-inline-flex align-items-center small mx-2">
<i class="fa-solid fa-book"></i>
<a href="https://search.worldcat.org/search?q={{ . }}&offset=1"> ISBN {{ . }}</a>
</span>
{{ end }}
</div>