-
Notifications
You must be signed in to change notification settings - Fork 1
/
overview.html
135 lines (105 loc) · 4.92 KB
/
overview.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
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<title id="PageTitle"></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-------------------- STYLING DEPENDENCIES ------------------------>
<link rel="stylesheet" href="https://bootswatch.com/4/flatly/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://bootswatch.com/_vendor/popper.js/dist/umd/popper.min.js"></script>
<script src="https://bootswatch.com/_vendor/bootstrap/dist/js/bootstrap.min.js"></script>
<!-------------------- LOCAL STYLING ------------------------------->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-------------------- NAV BAR ------------------------------------->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary ">
<a id="NavTitle" class="navbar-brand" href="index.html"></a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbarColor01">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a id="Item1" class="nav-link" href="index.html"><span class="sr-only"></span></a>
</li>
<li class="nav-item">
<a id="Item2" class="nav-link" href="about.html"></a>
</li>
<li class="nav-item dropdown active">
<a id="Item3" class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false"></a>
<div class="dropdown-menu" x-placement="bottom-start">
<a id="Dropdown1" class="dropdown-item active" href="overview.html"></a>
<div class="dropdown-divider"></div>
<a id="Dropdown2" class="dropdown-item" href="module1.html"></a>
<a id="Dropdown3" class="dropdown-item" href="module2.html"></a>
</div>
</li>
</ul>
</div>
</nav>
<!-------------------- END OF NAV BAR ---------------------->
<!-------------------- START OF MAIN PAGE ------------------>
<div class="container-fluid text-center">
<div class="row content">
<!-------------------- START OF LEFT SIDEBAR --------------->
<div class="col-sm-2 sidenav"></div>
<!-------------------- END OF LEFT SIDEBAR ----------------->
<!-------------------- START OF CENTER CONTENT ------------->
<div class="col-sm-8 text-left">
<div id="OverviewTitle" class="h1 h2"></div>
<!-------------------- TEXT SECTIONS ----------------------->
<div class="extra-text">
<div id="Module1" class="bold bottom-margin"></div>
<div id="Descr1"></div>
</div>
<hr>
<div class="extra-text">
<div id="Module2" class="bold bottom-margin"></div>
<div id="Descr2"></div>
</div>
<hr>
<div class="extra-text">
<div id="Module3" class="bold bottom-margin"></div>
<div id="Descr3"></div>
</div>
<hr>
<div class="extra-text">
<div id="Module4" class="bold bottom-margin"></div>
<div id="Descr4"></div>
</div>
<hr>
<div class="extra-text">
<div id="Module5" class="bold bottom-margin"></div>
<div id="Descr5"></div>
</div>
<hr>
<!-------------------- END OF TEXT ------------------------>
<!-------------------- START OF BOTTOM NAV------------------>
<div class='bottom-nav'>
<button id='PrevButton' class='btn btn-warning' onclick="window.location.href = 'about.html';"></button>
<button id='NextButton' class='btn btn-warning' onclick="window.location.href = 'module1.html';"></button>
</div>
<!-------------------- END OF BOTTOM NAV ------------------->
</div>
<!-------------------- END OF CENTER CONTENT --------------->
<!-------------------- START OF RIGHT SIDEBAR -------------->
<div class="col-sm-2 sidenav"></div>
<!-------------------- END OF RIGHT SIDEBAR ---------------->
</div>
</div>
<!-------------------- END OF MAIN PAGE --------------------->
<!-------------------- FOOTER ------------------------------->
<nav class="navbar navbar-default navbar-fixed-bottom">
<div id="Footer" class="footer"></div>
</nav>
<!-------------------- LOCAL JS TO ADD CONTENT -------------->
<script src="js/fill-text.js"></script>
<script>
getText("https://opennorth.github.io/public-consultation-data-literacy/data/text/nav.json", "EN");
getText("https://opennorth.github.io/public-consultation-data-literacy/data/text/overview.json", "EN");
</script>
</body>
</html>