-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (32 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>Inudon - Mastdon client by Electron</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="./photon/css/photon.css">
</head>
<body>
<div class="window">
<!-- .toolbar-header sits at the top of your app -->
<header class="toolbar toolbar-header" style="-webkit-app-region: drag">
<h1 class="title">Inudon</h1>
</header>
<!-- Your app's content goes inside .window-content -->
<div class="window-content">
<div class="pane-group">
<div class="pane pane-sm sidebar">
<nav class="nav-group">
<h5 class="nav-group-title">Created by わんちゃん</h5>
<span class="nav-group-item">
<span class="icon icon-home"></span>
</span>
</nav>
</div>
<div class="pane">
<webview id="browser" src="https://mastodon.cloud/about" autosize="on" style="height:100%; width:100%;"></webview>
</div>
</div>
</div>
</div>
</body>
</html>