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