2019-04-03 13:47:12 +00:00
|
|
|
<!DOCTYPE html>
|
2021-04-21 17:21:43 +00:00
|
|
|
<html lang="en">
|
2019-04-03 13:47:12 +00:00
|
|
|
<head>
|
|
|
|
<title>SUI</title>
|
|
|
|
<meta charset="utf-8">
|
2021-04-21 17:21:43 +00:00
|
|
|
<meta name="description" content="a startpage for your server and / or new tab page">
|
2019-04-03 13:47:12 +00:00
|
|
|
<meta http-equiv="Default-Style" content="">
|
|
|
|
<meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
|
2020-05-08 02:36:44 +00:00
|
|
|
<link type="text/css" rel="stylesheet" href="./assets/css/styles.css" media="screen,projection"/>
|
2019-04-03 13:47:12 +00:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,900" rel="stylesheet">
|
2021-04-21 17:21:43 +00:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.7.7/handlebars.min.js"></script>
|
|
|
|
<script src="https://code.iconify.design/1/1.0.7/iconify.min.js"></script>
|
2019-04-03 13:47:12 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body onload="loadFunctions()">
|
2021-07-12 06:59:43 +00:00
|
|
|
|
2019-04-03 13:47:12 +00:00
|
|
|
<section id="modal">
|
|
|
|
<div>
|
|
|
|
<header id="modal-header">
|
|
|
|
<h1>Options</h1>
|
|
|
|
<a href="#" title="Close" class="modal-close">
|
|
|
|
<span class="iconify" data-icon="mdi-close"></span>
|
|
|
|
</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>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2>Search options</h2>
|
|
|
|
|
|
|
|
<section id="providers">
|
|
|
|
<script type="text/handlebars-template" id="providers-template">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Website</th>
|
|
|
|
<th>Prefix</th>
|
|
|
|
</tr>
|
|
|
|
{{#providers}}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{{url}}">{{name}}</a></td>
|
|
|
|
<td>{{prefix}}</td>
|
|
|
|
</tr>
|
|
|
|
{{/providers}}
|
|
|
|
</table>
|
|
|
|
</script>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<header id="modal-footer">
|
|
|
|
<a href="https://github.com/jeroenpardon/"><span class="iconify" data-icon="mdi-github-box"></span></a>
|
2021-09-07 16:23:18 +00:00
|
|
|
<a href="https://materialdesignicons.com/"><span class="iconify" data-icon="mdi-material-design"></span></a>
|
2019-04-03 13:47:12 +00:00
|
|
|
</header>
|
|
|
|
</div>
|
2021-07-12 06:59:43 +00:00
|
|
|
</section>
|
2019-04-03 13:47:12 +00:00
|
|
|
|
|
|
|
<main id="container" class="fade">
|
|
|
|
|
|
|
|
<section id="search">
|
|
|
|
<input name="keywords" type="text" id="keywords" size="50" spellcheck="false" autofocus="true" onkeydown="handleKeyPress(event)">
|
|
|
|
</section>
|
2021-07-12 06:59:43 +00:00
|
|
|
|
2019-04-03 13:47:12 +00:00
|
|
|
<section id="header">
|
|
|
|
<h2 id="header_date"></h2>
|
|
|
|
<h1 id="header_greet"></h1>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="apps">
|
|
|
|
<script type="text/handlebars-template" id="apps-template">
|
|
|
|
<h3>Applications</h3>
|
|
|
|
<div id="apps_loop">
|
|
|
|
{{#apps}}
|
|
|
|
<div class="apps_item">
|
|
|
|
<div class="apps_icon">
|
|
|
|
<span class="iconify icon" data-icon="mdi-{{icon}}"></span>
|
|
|
|
</div>
|
|
|
|
<div class="apps_text">
|
2021-09-01 17:02:08 +00:00
|
|
|
<a href="http://{{url}}" {{#if target}}target="{{target}}"{{/if}} >{{name}}</a>
|
2020-05-14 12:47:28 +00:00
|
|
|
<span id="app-address">{{url}}</span>
|
2019-04-03 13:47:12 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-12 06:59:43 +00:00
|
|
|
{{/apps}}
|
2019-04-03 13:47:12 +00:00
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="links">
|
|
|
|
<script type="text/handlebars-template" id="links-template">
|
|
|
|
<h3>Bookmarks</h3>
|
|
|
|
<div id="links_loop">
|
|
|
|
{{#bookmarks}}
|
|
|
|
<div id="links_item">
|
|
|
|
<h4>{{category}}</h4>
|
|
|
|
{{#links}}
|
2021-07-12 06:59:43 +00:00
|
|
|
<a href="{{url}}" target="{{target}}" class="theme_color-border theme_text-select">{{name}}</a>
|
2019-04-03 13:47:12 +00:00
|
|
|
{{/links}}
|
|
|
|
</div>
|
|
|
|
{{/bookmarks}}
|
2021-07-12 06:59:43 +00:00
|
|
|
</div>
|
2019-04-03 13:47:12 +00:00
|
|
|
</script>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<div id="modal_init">
|
|
|
|
<a class="btn" href="#modal">
|
|
|
|
<span class="iconify icon" data-icon="mdi-xbox-controller-menu"></span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2020-05-08 02:36:44 +00:00
|
|
|
<script src="./assets/js/data.js" type="text/javascript"></script>
|
|
|
|
<script src="./assets/js/script.js" type="text/javascript"></script>
|
|
|
|
<script src="./assets/js/themer.js" type="text/javascript"></script>
|
|
|
|
<script src="./assets/js/search.js" type="text/javascript"></script>
|
2021-07-12 06:59:43 +00:00
|
|
|
|
2019-04-03 13:47:12 +00:00
|
|
|
</body>
|
2020-05-08 02:36:44 +00:00
|
|
|
</html>
|