-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (88 loc) · 3.2 KB
/
index.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<title>Boyi Starter</title>
<meta charset="utf-8">
<meta name="description" content="a startpage for your server and / or new tab page">
<meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
<link rel="shortcut icon" href="/icon-512.png" type="image/png">
<link rel="stylesheet" href="/scss/styles.scss" />
</head>
<body>
<section id="modal">
<div>
<header id="modal-header">
<h1>Options</h1>
<a href="#" title="Close" class="modal-close">
{{{iconify 'close'}}}
</a>
</header>
<h2>Color themes</h2>
<div id="modal-theme">
<button data-theme="blackboard" class="theme-button theme-blackboard">Blackboard</button>
<button data-theme="gazette" class="theme-button theme-gazette">Gazette</button>
<button data-theme="espresso" class="theme-button theme-espresso">Espresso</button>
<button data-theme="cab" class="theme-button theme-cab">Cab</button>
<button data-theme="cloud" class="theme-button theme-cloud">Cloud</button>
<button data-theme="lime" class="theme-button theme-lime">Lime</button>
<button data-theme="passion" class="theme-button theme-passion">Passion</button>
<button data-theme="blues" class="theme-button theme-blues">Blues</button>
<button data-theme="chalk" class="theme-button theme-chalk">Chalk</button>
<button data-theme="tron" class="theme-button theme-tron">Tron</button>
<button data-theme="paper" class="theme-button theme-paper">Paper</button>
<button data-theme="initial" class="theme-button theme-initial">Initial</button>
</div>
<footer>
Project: <a href="https://github.com/reorx/sui2">reorx/suis</a>
Icons: <a href="https://icon-sets.iconify.design/mdi/">Iconify MDI</a>
</footer>
</div>
</section>
<div id="keyword"></div>
<main id="container">
<section id="header">
<h2 id="header_date"></h2>
<h1 id="header_greet"></h1>
</section>
{{#apps}}
<section class="apps">
<h3>{{name}}</h3>
<div class="apps_loop">
{{#items}}
<div class="apps_item_wrap">
<a href="{{url}}" target="_blank" class="apps_item">
<div class="apps_icon">
{{{iconify icon}}}
</div>
<div class="apps_text">
<span class="name">{{name}}</span>
<span class="domain">{{domain url}}</span>
</div>
</a>
</div>
{{/items}}
</div>
</section>
{{/apps}}
<section id="links">
<h3>Bookmarks</h3>
<div id="links_loop">
{{#bookmarks}}
<div class="links_category">
<h4>{{category}}</h4>
{{#links}}
<a href="{{url}}" target="{{target}}" class="links_item theme_color-border theme_text-select">{{name}}</a>
{{/links}}
</div>
{{/bookmarks}}
</div>
</section>
</main>
<div id="modal_init">
<a class="btn" href="#modal">
{{{iconify 'xbox-controller-menu'}}}
</a>
</div>
<script src="/js/main.js" type="module"></script>
</body>
</html>