Next Book
Suggestions for the next book to read from your Storygraph to-read pile
{{ if index . "Fiction" }}
{{ $cat := "Fiction" }} {{ $book := index . $cat }}
{{ $cat }}
{{ $book.Name }}
⭐ {{ $book.Rating }}
{{ $cat := "Non-Fiction" }} {{ $book := index . $cat }}
{{ $cat }}
{{ $book.Name }}
⭐ {{ $book.Rating }}
{{ $cat := "Comics" }} {{ $book := index . $cat }}
{{ $cat }}
{{ $book.Name }}
⭐ {{ $book.Rating }}
{{ range $cat, $book := .}} {{ if or (eq $cat "Fiction") (eq $cat "Non-Fiction") (eq $cat "Comics") }} {{ continue }} {{ end }}
{{ $cat }}
{{ $book.Name }}
⭐ {{ $book.Rating }}
{{ end }}
{{ else }}
Still loading book recommendations...
{{ end }}