aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/views/layout.rocker.html
blob: f292e24cee61179d74972734291ab128b1f65227 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@args (String title, 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
    <title>@title</title>
</head>
<body>
@content

<script src="/js/prefetch.js"></script>
@js
</body>
</html>