-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
141 lines (111 loc) · 5.51 KB
/
about.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
136
137
138
139
140
141
<!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 active">
<a id="Item2" class="nav-link" href="about.html"></a>
</li>
<li class="nav-item dropdown">
<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" 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="AboutTitle" class="h1 h2"></div>
<!-------------------- QUESTIONS --------------------------->
<div class='extra-text'>
<div id="Question1" class="bold bottom-margin clickme hover-highlight" onclick="reveal('Answer1')"></div>
<div id="Answer1" class='hide'></div>
</div>
<hr>
<div class='extra-text'>
<div id="Question2" class="bold bottom-margin clickme hover-highlight" onclick="reveal('Answer2')"></div>
<div id="Answer2" class='hide'></div>
</div>
<hr>
<div class='extra-text'>
<div id="Question3" class="bold bottom-margin clickme hover-highlight" onclick="reveal('Answer3')"></div>
<div id="Answer3" class='hide'></div>
</div>
<hr>
<div class='extra-text'>
<div id="Question4" class="bold bottom-margin clickme hover-highlight" onclick="reveal('Answer4')"></div>
<div id="Answer4" class='hide'></div>
</div>
<hr>
<div class='extra-text'>
<div id="Question5" class="bold bottom-margin clickme hover-highlight" onclick="reveal('Answer5')"></div>
<div id="Answer5" class='hide'></div>
</div>
<hr>
<div class='extra-text'>
<div id="Question6" class="bold bottom-margin clickme hover-highlight" onclick="reveal('Answer6')"></div>
<div id="Answer6" class='hide'></div>
</div>
<hr>
<!-------------------- END OF QUESTIONS -------------------->
<!-------------------- START OF BOTTOM NAV------------------>
<div class='bottom-nav'>
<button id='PrevButton' class='btn btn-warning' onclick="window.location.href = 'index.html';"></button>
<button id='NextButton' class='btn btn-warning' onclick="window.location.href = 'overview.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 src="js/reveal.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/about.json", "EN");
</script>
</body>
</html>