Skip to content

Instantly share code, notes, and snippets.

@shindakun
Created December 31, 2019 08:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shindakun/0489695d373b41983dcf5e5637795ec3 to your computer and use it in GitHub Desktop.
Save shindakun/0489695d373b41983dcf5e5637795ec3 to your computer and use it in GitHub Desktop.
Hugo Gbook Shortcode

{{< gbook isbn="1932234411" >}}

{{ $isbn := printf "%s%s" "?q=isbn:" .Params.isbn }}
{{ $urlPre := "https://www.googleapis.com/books/v1/volumes" }}
{{ $gistJ := getJSON $urlPre $isbn }}
{{ $i := index $gistJ.items 0 }}
<img src="{{ $i.volumeInfo.imageLinks.thumbnail }}" />
{{ $i.volumeInfo.title }} <br>
{{ $i.volumeInfo.authors }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment