yadunut.dev/layouts/film-archive.shtml
Yadunand Prem 9f30a23177
All checks were successful
Build OCI Image / docker (push) Successful in 54s
Add film photos
2025-08-23 01:27:42 +08:00

26 lines
517 B
Plaintext

<extend template="base.shtml">
<head id="head">
<style>
.date {
font-size: 0.9em;
}
.title h3{
margin-top: 0;
}
</style>
</head>
<body id="body">
<h1 :text="$page.title"></h1>
<div :html="$page.content()"></div>
<div>
<h2>Rolls</h2>
<div :loop="$page.subpages()">
<span class="date" :text="$loop.it.date.format('Year 2006')"></span>
<a class="title" href="$loop.it.link()">
<h3 :text="$loop.it.title"></h3>
</a>
</div>
</div>
</body>