aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/views/layout.rocker.html
blob: 9963aad36457c46104b46aaa5c327c95eb099ff2 (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
27
28
29
30
@import space.anity.DatabaseController
@import space.anity.UserHandler
@import io.javalin.*
@args (String title, Context ctx, RockerContent css, RockerContent js, RockerBody content)

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
          name="viewport">
    <meta content="ie=edge" http-equiv="X-UA-Compatible">
    <link href="/css/icons.css" rel="stylesheet">
    <link href="/css/layout.css" rel="stylesheet">
    @css

    @if((new DatabaseController()).isDarkTheme((new UserHandler()).getVerifiedUserId(ctx))) {
    <link href="/css/darkLayout.css" rel="stylesheet">
    }

    <title>@title</title>
</head>
<body>
<div class="main">
    @content
</div>
<script src="/js/prefetch.js"></script>
@js
</body>
</html>