album/templates/page_base.rs.html

11 lines
243 B
HTML
Raw Normal View History

@use super::base;
@use crate::server::{Context, Link};
2016-09-26 01:45:13 +03:00
@(context: &Context, title: &str, lpath: &[Link], meta: Content, content: Content)
@:base(context, title, lpath, meta, {
2017-02-11 15:20:48 +04:00
<main>
<h1>@title</h1>
@:content()
</main>
})