-
Notifications
You must be signed in to change notification settings - Fork 12
/
options.html
53 lines (42 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>{{extName}}</title>
<link rel="stylesheet" type="text/css" href="css/options.css">
<link rel="stylesheet" type="text/css" href="lib/jsTabs/tabs.css">
</head>
<body>
<div id=message_place>
<span id="error">{{o_error}}</span>
<span id="success">{{o_saved}}</span>
</div>
<div id="page">
<header>
<img src="img/ext_icons/48.png" title="{{extDescr}}" width="48" height="48">
<strong>{{extName}}</strong>
</header>
<section id="main_tabs" class="tabs">
<ul class="tabs_nav">
<li><a href="#main">{{o_tabs_main}}</a></li>
<li><a href="#help">{{o_tabs_help}}</a></li>
</ul>
<div class="tabs_content">
<div id="main">
</div>
<div id="help">
</div>
</div>
</section>
<footer>
<p class="copyright">by <a href="#" target="_blank">...</a></p>
</footer>
</div>
<script src="js/helpers/localizer.js"></script>
<script src="lib/jsTabs/tabs.js"></script>
<script src="js/storage.js"></script>
<script src="js/helpers/quick_options.js"></script>
<!--<script src="lib/jquery.min.js"></script>-->
<script src="js/options.js"></script>
</body>
</html>