@@ -26,30 +26,43 @@ <h1 class="text-4xl font-bold mb-2">{{if eq $locale "ja"}}本棚{{else}}Bookshel
2626 </ p >
2727 </ header >
2828
29- {{- $books := index .VirtualPageData "books"}}
30- {{if $books}}
31- < div class ="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-6 ">
32- {{range $books}}
33- < div class ="flex flex-col items-center text-center gap-2 ">
34- < a href ="{{.LinkURL}} " target ="_blank " rel ="noopener noreferrer " class ="block hover:opacity-80 transition-opacity " aria-label ="{{.Title}} on Amazon ">
35- < img
36- src ="{{.ImageURL}} "
37- alt ="{{.Title}} "
38- class ="rounded shadow w-full max-w-[160px] object-cover "
39- loading ="lazy "
40- width ="250 "
41- height ="250 "
42- >
43- </ a >
44- < p class ="text-sm font-medium leading-snug line-clamp-3 "> {{.Title}}</ p >
45- {{if .ArticleURL}}
46- < a href ="{{.ArticleURL}} " class ="text-xs text-secondary underline hover:text-primary ">
47- {{if eq $locale "ja"}}書評を読む{{else}}Read review{{end}}
48- </ a >
29+ {{- $categories := index .VirtualPageData "categories"}}
30+ {{if $categories}}
31+ {{- range $categories}}
32+ < section class ="mb-12 ">
33+ < h2 class ="text-2xl font-semibold mb-6 pb-2 border-b border-border ">
34+ {{if .Name}}{{.Name}}{{else}}{{if eq $locale "ja"}}未分類{{else}}Uncategorized{{end}}{{end}}
35+ </ h2 >
36+ < div class ="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-6 ">
37+ {{range .Books}}
38+ < div class ="flex flex-col items-center text-center gap-2 ">
39+ {{if .ImageURL}}
40+ < a href ="{{.LinkURL}} " target ="_blank " rel ="noopener noreferrer " class ="block hover:opacity-80 transition-opacity " aria-label ="{{.Title}} on Amazon ">
41+ < img
42+ src ="{{.ImageURL}} "
43+ alt ="{{.Title}} "
44+ class ="rounded shadow w-full max-w-[160px] object-cover "
45+ loading ="lazy "
46+ width ="250 "
47+ height ="250 "
48+ >
49+ </ a >
50+ {{else}}
51+ < a href ="{{.LinkURL}} " target ="_blank " rel ="noopener noreferrer " class ="flex items-center justify-center rounded shadow w-full max-w-[160px] min-h-[200px] bg-secondary text-secondary text-xs p-3 hover:opacity-80 transition-opacity leading-snug ">
52+ {{.Title}}
53+ </ a >
54+ {{end}}
55+ < p class ="text-sm font-medium leading-snug line-clamp-3 "> {{.Title}}</ p >
56+ {{if .ArticleURL}}
57+ < a href ="{{.ArticleURL}} " class ="text-xs text-secondary underline hover:text-primary ">
58+ {{if eq $locale "ja"}}書評を読む{{else}}Read review{{end}}
59+ </ a >
60+ {{end}}
61+ </ div >
4962 {{end}}
5063 </ div >
51- {{end}}
52- </ div >
64+ </ section >
65+ {{end}}
5366 {{else}}
5467 < p class ="text-secondary ">
5568 {{if eq $locale "ja"}}まだ本が登録されていません。{{else}}No books yet.{{end}}
0 commit comments