@Icon("layers", "h-6 w-6 text-brand")
if len(seriesList) == 0 {
Series
@Icon("layers", "h-7 w-7")
No Series Found
Books with series metadata will appear here.
for _, series := range seriesList {
@SeriesCard(series)
}
if totalPages > 1 {
if currentPage > 1 {
@Icon("chevron-left", "h-4 w-4")
Previous
}
Page { fmt.Sprintf("%d", currentPage) } of { fmt.Sprintf("%d", totalPages) }
if currentPage < totalPages {
Next
@Icon("chevron-right", "h-4 w-4")
}
}