This repository has been archived by the owner on Mar 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
64 lines (62 loc) · 2.2 KB
/
options.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<!-- JQuery -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<!-- Material Lite -->
<link href="css/material.min.css" rel="stylesheet">
<script src="bower_components/material-design-lite/material.min.js"></script>
<!-- Material Fonts -->
<link href="bower_components/material-design-icons/iconfont/material-icons.css" rel="stylesheet">
<!-- Dialog Polyfill -->
<script src="bower_components/dialog-polyfill/dialog-polyfill.js"></script>
<link href="bower_components/dialog-polyfill/dialog-polyfill.css" rel="stylesheet">
<!-- Core -->
<link href="css/core.css" rel="stylesheet">
<script src="js/core.js"></script>
<!-- API -->
<script src="js/api.js"></script>
<!-- Drawer JS -->
<script src="js/drawer.js"></script>
<!-- Options -->
<link href="css/options.css" rel="stylesheet">
<script src="js/options.js"></script>
<title>Settings</title>
</head>
<body>
<div class="mdl-layout mdl-js-layout">
<header class="mdl-layout__header">
<div class="back-button mdl-layout-icon mdl-button mdl-js-button mdl-button--icon">
<i class="material-icons">arrow_back</i>
</div>
<!-- Top row, always visible -->
<div class="mdl-layout__header-row">
<!-- Title -->
<span id="title" class="mdl-layout-title">Settings</span>
</div>
</header>
<!-- Nav drawer (populated in drawer.js) -->
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Title</span>
<nav class="mdl-navigation"></nav>
</div>
<main class="mdl-layout__content">
<div id="options_body">
</div>
<!-- Snackbar -->
<div id="snackbar" class="mdl-js-snackbar mdl-snackbar">
<div class="mdl-snackbar__text"></div>
<button class="mdl-snackbar__action" type="button"></button>
</div>
</main>
</div>
<!-- Dialog -->
<dialog id="dialog" class="mdl-dialog">
<h4 id="dialog_title" class="mdl-dialog__title"></h4>
<div id="dialog_content" class="mdl-dialog__content">
</div>
<div id="dialog_actions" class="mdl-dialog__actions">
</div>
</dialog>
</body>
</html>