blob: 5b1a32498e19eaa41ba836af1f57836d993914b3 (
plain) (
tree)
|  |  | @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>
 |