-
Notifications
You must be signed in to change notification settings - Fork 16
/
base.html
26 lines (19 loc) · 816 Bytes
/
base.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{template "title"}}</title>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<script crossorigin="anonymous" src="https://unpkg.com/@hotwired/[email protected]/dist/turbo.es5-umd.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/uikit.min.css"
integrity="sha256-QCcX9tE+r2uzx3OO66o1ra0Kf4wNDYIzv6BETff9BVY=" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit.min.js"
integrity="sha256-GUgWjCeqU2XItPzRg89S8W/Z0sDTe/nzP9qIr8+M4fo=" crossorigin="anonymous"></script>
{{template "head"}}
{{define "head"}}{{end}}
</head>
<body>
{{template "body" .}}
<script src="/bundle.js"></script>
</body>
</html>