-
-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathmain.template.html
More file actions
37 lines (28 loc) · 1.25 KB
/
Copy pathmain.template.html
File metadata and controls
37 lines (28 loc) · 1.25 KB
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
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en" data-bulma-theme="light">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="@:target(/img/favicon.ico)" sizes="32x32">
<link rel="icon" href="@:target(/img/favicon.svg)" type="image/svg+xml">
<link rel="apple-touch-icon" href="@:target(/img/apple-touch-icon.png)">
<meta property="og:title" content="${cursor.currentDocument.title}" />
<meta property="og:image" content="@:target(/img/logo.png)" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Fira+Mono:500">
@:if(katex)
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.28/dist/katex.min.css"
integrity="sha384-Wsr4Nh3yrvMf2KCebJchRJoVo1gTU6kcP05uRSh5NV3sj9+a8IomuJoQzf3sMq4T" crossorigin="anonymous">
@:@
<link rel="stylesheet" href="@:target(/main.css)">
<link rel="stylesheet" href="@:target(/css/code.css)">
<script src="@:target(/main.js)"></script>
<title>${cursor.currentDocument.title}</title>
</head>
<body class="bulma-is-flex bulma-is-flex-direction-column">
@:include(/templates/nav.template.html)
<main class="bulma-is-flex-grow-1">
${_.embeddedBody}
</main>
@:include(/templates/footer.template.html)
</body>
</html>