package views import "github.com/arnef/ebooks/internal/library" templ Layout(title string) { { title }

eBook Library

{ children... }
} templ IndexPage(books []library.Book) { @Layout("Bibliothek") {

Meine Bücher

if len(books) == 0 {

Keine eBooks gefunden. Lege EPUB- oder PDF-Dateien im Ordner books/ ab.

} else { } } } templ BookPage(book library.Book) { @Layout(book.Title) {

{ book.Title }

Datei: { book.Filename }

Format: { book.Format }

Auf Tolino herunterladen

← Zurück zur Liste

} }