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