11 lines
253 B
HTML
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>
|
|
})
|