xrforge-v2/src/page/dir.html

24 lines
377 B
HTML
Raw Normal View History

2026-07-23 10:01:34 +02:00
${header}
2026-07-30 20:53:12 +02:00
{if parent ~= nil and parent.parent == nil then
print([[
<div style="height:120px;" class="jumbotron">
<h1>${opts.title}</h1>
${opts.subtitle}
</div>
<hr style="margin-top:0">
]])
end}
2026-07-30 20:53:12 +02:00
{if parent ~= nil and parent.parent ~= nil then
print([[
<h2>${parent.name}</h2>
]])
end}
2026-07-23 10:01:34 +02:00
<div class="grid">
${html_items}
2026-07-23 10:01:34 +02:00
</div>
${footer}