mirror of
https://github.com/adulau/sillon-fictionnel.git
synced 2024-11-07 12:06:37 +00:00
new: [ISBN] ajout de ISBNS car c'est toujours mieux quand on est plusieurs
This commit is contained in:
parent
5ae235f6bb
commit
d712adad49
1 changed files with 9 additions and 1 deletions
|
@ -2,7 +2,15 @@
|
||||||
{{ with .Params.ISBN }}
|
{{ with .Params.ISBN }}
|
||||||
<span class="d-inline-flex align-items-center small mx-2">
|
<span class="d-inline-flex align-items-center small mx-2">
|
||||||
<i class="fa-solid fa-book"></i>
|
<i class="fa-solid fa-book"></i>
|
||||||
<a href="https://search.worldcat.org/search?q={{ . }}&offset=1"> -> ISBN {{ . }}</a>
|
<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>
|
</span>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue