blob: 5b1a32498e19eaa41ba836af1f57836d993914b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
@use super::statics::*;
@(authenticated: bool, body: Content)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="/static/@style_css.name" />
<title>pinussy</title>
</head>
<body>
<nav>
@if authenticated {
logout
} else {
<a href="/login">log in</a>
}
</nav>
@:body()
</body>
</html>
|