+
+
+
{{ if $isGerman }}Bibliothek{{ else }}Library{{ end }}
+
{{ .Title }}
+
+ {{ if $isGerman }}
+ Mangas aus der eigenen Bibliothek.
+ {{ else }}
+ Manga from your own library.
+ {{ end }}
+
+
+
+ {{ len $items }} {{ if $isGerman }}Bände{{ else }}volumes{{ end }}
+
+
+
+
+ {{ if $loadingError }}
+
+ {{ if $isGerman }}
+ Die Bibliothek konnte beim Build nicht geladen werden.
+ {{ else }}
+ The library could not be loaded during build.
+ {{ end }}
+
+ {{ else if eq (len $items) 0 }}
+
+ {{ if $isGerman }}
+ Noch keine gelesenen Mangas gefunden.
+ {{ else }}
+ No read manga found yet.
+ {{ end }}
+
+ {{ else }}
+
+ {{ range $items }}
+ {{ $item := . }}
+ {{ $authors := cond (gt (len .authors) 0) (delimit .authors ", ") (cond $isGerman "Unbekannt" "Unknown") }}
+ {{ $displayTitle := printf "%s - %s %s" .editionTitle (cond $isGerman "Band" "Vol.") .numberDisplay }}
+ {{ if .title }}
+ {{ $displayTitle = printf "%s - %s" $displayTitle .title }}
+ {{ end }}
+ {{ $cover := .cover }}
+ {{ if not $cover }}
+ {{ $cover = .editionCover }}
+ {{ end }}
+
+
+ {{ if $cover }}
+

+ {{ else }}
+
+ {{ end }}
+
+
+
{{ .editionTitle }}
+
{{ $displayTitle }}
+
{{ $authors }}
+
+
+
+
+
+ {{ end }}
+
+ {{ end }}
+
+
+{{ end }}