router/templates/layout.rs.html

18 lines
409 B
HTML

@use crate::templates::statics::index_css;
@(title: &str, content: Content)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>@title</title>
<link rel="stylesheet" href="/static/@index_css.name" type="text/css" />
</head>
<body>
@:content()
</body>
</html>