-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
98 lines (74 loc) · 3.75 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Guganews</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Trianglify: -->
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/trianglify/0.1.5/trianglify.min.js"></script>
<!-- WinJS references -->
<link href="/vendor/winjs/css/ui-dark.css" rel="stylesheet" />
<script src="/vendor/winjs/js/WinJS.js"></script>
<!-- CSS: UrzaGatherer references -->
<link href="https://fonts.googleapis.com/css?family=Mukta" rel="stylesheet">
<link href="/css/pivot.css" rel="stylesheet">
<!-- JS: UrzaGatherer references -->
<script src="/js/default.js"></script>
<script src="/json-data/feeds.js"></script>
<script src="/js/pivot.js"></script>
<script src="/js/geolocation.js"></script>
<script src="/js/images.js"></script>
</head>
<body id="contentTarget">
<label id="progresscontainer">
<progress id="myProgressRing" class="win-ring win-large"></progress>
</label>
<div class="box">
<div data-win-control="WinJS.UI.ContentDialog" data-win-options="{
title: 'Network failure',
primaryCommandText: 'Ok'
}">
Please check your internet connection and try again.
<div style="height: 50px; width: 1px;"></div>
</div>
</div>
<div class="box">
<div id="refresh" data-win-control="WinJS.UI.ContentDialog" data-win-options="{
title: 'Dear user,',
secondaryCommandText: 'I am reading. Please wait...'
}">
<h1>I am about to update!</h1>
<div style="height: 50px; width: 1px;"></div>
</div>
</div>
<div id="progress"></div>
<div class="fullScreen">
<!-- app header and backbutton-->
<div id="appHeader">
<button data-win-control="WinJS.UI.BackButton"></button>
<h1 id="appHeaderTitle">
<b>Guganews</b>
</h1>
</div>
<!-- Start PIVOT... -->
<div class="mailItemTemplate" data-win-control="WinJS.Binding.Template">
<div class="mailItem mailItemIndex">
<div class="hitTarget win-interactive"></div>
<h2 class="title title-index fontcolorselect" data-win-bind="innerHTML: name"></h2>
</div>
</div>
<div id="pivotScenario3" class="wide" data-win-control="WinJS.UI.Pivot" data-win-options="{ title: '', selectedIndex: 1 }">
<div class="listviewpivotitem" data-win-control="WinJS.UI.PivotItem" data-win-options="{ 'header': 'Asia', managedLV: true }">
<div data-win-control="WinJS.UI.ListView" data-win-options="{ itemDataSource: Asia.dataSource, layout: { type: WinJS.UI.ListLayout }, itemTemplate: select('.mailItemTemplate'), selectionMode: 'none' }"></div>
</div>
<div class="listviewpivotitem" data-win-control="WinJS.UI.PivotItem" data-win-options="{ 'header': 'Europe & Africa', managedLV: true }">
<div data-win-control="WinJS.UI.ListView" data-win-options="{ itemDataSource: Europe.dataSource, layout: { type: WinJS.UI.ListLayout }, itemTemplate: select('.mailItemTemplate'), selectionMode: 'none' }"></div>
</div>
<div class="listviewpivotitem" data-win-control="WinJS.UI.PivotItem" data-win-options="{ 'header': 'North & South America',appBarClosedDisplayMode: 'minimal', managedLV: true }">
<div data-win-control="WinJS.UI.ListView" data-win-options="{ itemDataSource: North.dataSource, layout: { type: WinJS.UI.ListLayout }, itemTemplate: select('.mailItemTemplate'), selectionMode: 'none' }"></div>
</div>
</div>
</div>
</body>
</html>