..
Viewing
app.html
26 lines (27 loc) • 744.0 B
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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Styx</title>
<link rel="stylesheet" href="css/icofont.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="topNavigationBar">
<h1 class="titlebar" id="title">Styx File Manager</h1>
</div>
<div class="two_pane">
<div class="sidebar">
<h2 class="sidebarTitle">Favorites</h2>
<ul id="favourites"></ul>
</div>
<div class="content" id="currentView">
Hello Main Area
</div>
</div>
<script>
require("./ts_compiled/renderer.js");
</script>
</body>
</html>
|
|