mirror of
https://github.com/adulau/sillon-fictionnel.git
synced 2024-11-07 12:06:37 +00:00
16 lines
621 B
HTML
16 lines
621 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 }}
|
|
{{ with .Params.ISBNS }}
|
|
<span class="d-inline-flex align-items-center small mx-2">
|
|
{{ range . }}
|
|
<i class="fa-solid fa-book"></i> 
|
|
<a href="https://search.worldcat.org/search?q={{ . }}&offset=1"> ISBN {{ . }}  </a>
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|
|
</div>
|