album/templates/page_base.rs.html
2016-12-19 07:19:26 +01:00

20 lines
399 B
HTML

@use ::Link;
@use templates::head;
@(title: &str, lpath: Vec<Link>, user: Option<String>, content: Content)
<!doctype html>
<html>
<head>
<title>@title</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
@Html(include!(concat!(env!("OUT_DIR"), "/stylelink")))
</head>
<body>
@:head(lpath, user)
<h1>@title</h1>
@:content()
</body>
</html>