-
Notifications
You must be signed in to change notification settings - Fork 0
/
modal-host-create.html
35 lines (35 loc) · 1.4 KB
/
modal-host-create.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
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>Restify: Home</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- scripts -->
<script
src="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/js/splide.min.js"
integrity="sha256-FZsW7H2V5X9TGinSjjwYJ419Xka27I8XPDmWryGlWtw="
crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/mustache.min.js"></script>
<script src="js/templates.js"></script>
<!-- stylesheets -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/css/splide.min.css"
integrity="sha256-5uKiXEwbaQh9cgd2/5Vp6WmMnsUr3VZZw0a8rKnOKNU="
crossorigin="anonymous" />
<link rel="stylesheet" href="css/common.css" />
<link rel="stylesheet" href="css/components.css" />
<link rel="stylesheet" href="css/modal.css" />
<link rel="stylesheet" href="css/index.css" />
</head>
<body id="body" onload="renderTemplates();">
<script type="text/html" id="mustache">
<main>
{{{ navContent }}}
<!-- contents below nav bar -->
{{{modalHostCreate}}}
</main>
{{{ footerContent }}}
</script>
</body>
</html>