-
Notifications
You must be signed in to change notification settings - Fork 15
/
DashboardTemplate.html
40 lines (37 loc) · 1.3 KB
/
DashboardTemplate.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
36
37
38
39
40
<!DOCTYPE html>
<html class='no-js' lang=''>
<head>
<meta charset='utf-8'>
<meta http-equiv='x-ua-compatible' content='ie=edge'>
<title>Unet | Template</title>
<meta name='description' content=''>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='icon' type='image/x-icon' href='/img/unet.ico'>
<link rel="stylesheet" href="/css/vendor/modular-admin.css">
<link rel="stylesheet" href="/css/vendor/app-orange.css">
<link rel="stylesheet" href="/css/vendor/font.css">
<link rel="stylesheet" href="/css/style.css">
<script src="/js/vendor/modular-admin/modular-admin.js" ></script>
<script type='module' src='/js/webif.js'></script>
<style>
/* Add your custom css here */
</style>
</head>
<body>
<div class='main-wrapper'>
<div class='app header-fixed footer-fixed sidebar-fixed' id='app'>
<article class='content dashboard-page'>
<h1>Title</h1>
<hr>
<section class='section'>
<!-- Add your custom html here -->
</section>
</article>
</div>
</div>
</body>
<script type='module'>
// import { Gateway, Performative, MessageClass } from '/js/unet.js';
// Add your custom js here
</script>
</html>