album/templates/page_base.rs.html
2023-01-28 12:51:34 +01:00

11 lines
253 B
HTML

@use super::base_html;
@use crate::server::{Context, Link};
@(context: &Context, title: &str, lpath: &[Link], meta: Content, content: Content)
@:base_html(context, title, lpath, meta, {
<main>
<h1>@title</h1>
@:content()
</main>
})