-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.html
123 lines (98 loc) · 3.2 KB
/
template.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>MGSV Nuke watcher</title>
<link rel="stylesheet" href="/mgsv_nuke_watcher/assets/css/style.css?v=e87f0deb0254f7f9c7602bca2e1aad2458818a1e">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="/mgsv_nuke_watcher/assets/js/main.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<script src="/mgsv_nuke_watcher/assets/vis.min.js"></script>
<link href="/mgsv_nuke_watcher/assets/vis.min.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<h1>MGSV Nuke watcher</h1>
<p></p>
</header>
<div id="banner">
<span id="logo"></span>
<a href="https://github.com/unknown321/mgsv_nuke_watcher" class="button fork"><strong>View On GitHub</strong></a>
</div><!-- end banner -->
<div class="wrapper">
<nav>
<ul></ul>
</nav>
<section>
<h1>Nukes on Steam: -nukes_steam-</h1>
<h1>Nukes on PS3: -nukes_ps3-</h1>
<h1>Nukes on PS4: -nukes_ps4-</h1>
<p>Last update: -last_nuke_update- (UTC)</p>
<div id="visualization_steam"></div>
<script type="text/javascript">
var container = document.getElementById('visualization_steam');
var items = [
-nuke_data_steam-
];
var dataset = new vis.DataSet(items);
var options = {
// width:'600px',
// height:'200px',
// start: '2017-02-01',
// end: '2017-04-01'
};
var Graph2d = new vis.Graph2d(container, dataset, options);
Graph2d.fit()
</script>
<br>
<hr>
<div id="visualization_ps3"></div>
<script type="text/javascript">
var container = document.getElementById('visualization_ps3');
var items = [
-nuke_data_ps3-
];
var dataset = new vis.DataSet(items);
var options = {
// width:'600px',
// height:'200px',
// start: '2017-02-01',
// end: '2017-04-01'
};
var Graph2d = new vis.Graph2d(container, dataset, options);
Graph2d.fit()
</script>
<br>
<hr>
<div id="visualization_ps4"></div>
<script type="text/javascript">
var container = document.getElementById('visualization_ps4');
var items = [
-nuke_data_ps4-
];
var dataset = new vis.DataSet(items);
var options = {
// width:'600px',
// height:'200px',
// start: '2017-02-01',
// end: '2017-04-01'
};
var Graph2d = new vis.Graph2d(container, dataset, options);
Graph2d.fit()
</script>
<br>
<hr>
<h1>FOB event info:</h1>
-fob_event_main-
<h1>Other events:</h1>
-fob_event_others-
<hr>
<hr>
<h1>Info list:</h1>
-infolist-
</body>
</html>