-
Notifications
You must be signed in to change notification settings - Fork 188
/
index.html
69 lines (65 loc) · 2.24 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
<!DOCTYPE HTML>
<!--
Hyperspace by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Electron tutorial app</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/eta-app.css" />
<link rel="import" href="sections/getintouch.html">
<link rel="import" href="sections/welcome.html">
<link rel="import" href="sections/dialog.html">
<link rel="import" href="sections/ipcremote.html">
</head>
<body>
<!-- Sidebar -->
<section id="sidebar">
<div class="inner">
<nav>
<ul>
<li><a id="welcome-menu" data-section="welcome" href="#">Welcome</a></li>
<li><a id="whoweare-menu" data-section="ipcremote" href="#">IPC/Remote</a></li>
<li><a id="dialog-menu" data-section="dialog" href="#">Dialog</a></li>
<li><a id="getintouch-menu" data-section="getintouch" href="#">Get in touch</a></li>
</ul>
</nav>
<div class="version-info">
Tested with Electron v5.0.8
</div>
<div class="version-info">
(Currently running Electron v<script>document.write(process.versions.electron)</script>)
</div>
</div>
</section>
<!-- Wrapper -->
<div id="wrapper">
</div>
<!-- Footer -->
<footer id="footer" class="wrapper style1-alt">
<div class="inner">
<ul class="menu">
<li>© Untitled. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script>window.$ = window.jQuery = require('./assets/js/jquery.min.js');</script>
<script>window.i18n = new(require('./translations/i18n'));</script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script>
require('./assets/js/menu')
require('./assets/js/translations')
require('./assets/js/ipc')
require('./assets/js/dialog')
</script>
</body>
</html>