-
Notifications
You must be signed in to change notification settings - Fork 38
/
index.html
60 lines (47 loc) · 2.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Konata</title>
<!--
スタイルシートは最初に読み込んでおく必要がある.
各ライブラリは内部でスタイルシートを挿入することがあり,その場合参照がずれる.
-->
<link rel="stylesheet" type="text/css" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./theme/base.css">
<link rel="stylesheet" type="text/css" href="./theme/dark/style.css" id="konata_theme_css">
<!--
<link rel="stylesheet" type="text/css" href="./theme/light/style.css">
-->
<!-- jquery/bootstrap -->
<script type="text/javascript">
// Electron の仕様で jquery が正しくロードされないので,その対策
// https://github.com/electron/electron/issues/254
window.jQuery = window.$ = require("./node_modules/jquery/dist/jquery.js");
</script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.js" type="text/javascript"></script>
<!-- riot -->
<script src="./node_modules/riot/riot+compiler.js" type="text/javascript"></script>
</head>
<body>
<!-- 実装 -->
<script>
let Store = require("./store");
let store = new Store.Store(); // Create a store instance.
let dispatcher = require("./node_modules/riotcontrol/riotcontrol");
let ACTION = Store.ACTION; // eslint-disable-line
let CHANGE = Store.CHANGE; // eslint-disable-line
dispatcher.addStore(store); // Register the store in central dispatch.
</script>
<script type="riot/tag" src="dialogs.tag.html" charset="UTF-8"></script>
<script type="riot/tag" src="component.tag.html" charset="UTF-8"></script>
<script type="riot/tag" src="app.tag.html" charset="UTF-8"></script>
<!-- app.tag.html 内で定義されたカスタムタグが <app> の下に動的にマウントされる -->
<app></app>
<!-- マウントの実行 -->
<script>
/* globals riot*/
riot.mount("app");
</script>
</body>
</html>