17 lines
391 B
Text
17 lines
391 B
Text
package html
|
|
templ Album(images []string, activePage string, pages []string) {
|
|
@layout("album") {
|
|
<main tabindex="-1">
|
|
@albumHeader(activePage, pages)
|
|
<section>
|
|
<div id="album-grid">
|
|
for _, img := range images {
|
|
<div tabindex="0" role="button" aria-label={ img }>
|
|
@AvifImage("album/"+img, img, true)
|
|
</div>
|
|
}
|
|
</div>
|
|
</section>
|
|
</main>
|
|
}
|
|
}
|