This repository was archived by the owner on Apr 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainview.html
More file actions
72 lines (63 loc) · 2.1 KB
/
Copy pathmainview.html
File metadata and controls
72 lines (63 loc) · 2.1 KB
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
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GiTA</title>
<link rel="stylesheet" href="css/mainview.css">
<script src="node_modules/feather-icons/dist/feather.min.js"></script>
</head>
<body>
<button class="btn" id="contributionviewicon">
<i data-feather="eye"></i>
</button>
<div class="frame" id="terminal">
<div class="topbar blue">
<div class="swatches">
<span class="red"></span>
<span class="orange"></span>
<span class="yellow"></span>
<span class="green"></span>
<span class="blue"></span>
</div>
<div class="maxbtn">
<span></span>
</div>
<div class="xbtn">x</div>
</div>
<div class="content">
<div class="custom-wrapper">
<webview src="./terminal.html" frameborder="0" nodeintegration></webview>
</div>
</div>
</div>
<div class="frame" id="visualiser">
<div class="topbar orange">
<div class="swatches">
<span class="red"></span>
<span class="orange"></span>
<span class="yellow"></span>
<span class="green"></span>
<span class="blue"></span>
</div>
<div class="maxbtn">
<span></span>
</div>
<div class="xbtn">x</div>
</div>
<div class="content">
<webview src="./visualiser.html" frameborder="0" nodeintegration></webview>
</div>
</div>
<div class="hidden-module">
<webview src="./gita-command.html" frameborder="0" nodeintegration></webview>
</div>
<div class="hidden-module">
<webview src="./input-checker.html" frameborder="0" nodeintegration></webview>
</div>
<script>
window.$ = window.jQuery = require('jquery');
</script>
<script src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js'></script>
<script src="js/mainview.js"></script>
</body>
</html>