-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwikipedia.html
More file actions
82 lines (65 loc) · 3.05 KB
/
Copy pathwikipedia.html
File metadata and controls
82 lines (65 loc) · 3.05 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
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="public">
<meta http-equiv="Cache-Control" content="max-age=3600">
<meta http-equiv="Cache-Control" content="must-revalidate">
<title>APIs aggregator</title>
<link href="data:image/x-icon;base64, AAABAAEAEBAQAAEABAAoAQAAFgAAACgAAAAQAAAAIAAAAAEABAAAAAAAgAAAAAAAAAAAAAAAEAAA
AAAAAAAAAAAAWAdpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEREAAAAAAAEREQAAAAAAARAAAAAAAAAB
EAAAABEREQEQAAAAERERARAAAAAAEQABEREAAAARAAEREQAAABEAAAAAAAAAEQAAAAAAABEREQAA
AAAAERERAAAAAAAAAAAAAAAAAAAAAAAAAAD//wAA//8AAP+DAAD/gwAA/58AAP+fAADAnwAAwJ8A
APODAADzgwAA8/8AAPP/AADA/wAAwP8AAP//AAD//wAA" rel="icon" type="image/x-icon" />
<!-- Bootstrap Core CSS -->
<link href="libraries/bootstrap-4.0.0-beta.2-dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Theme CSS -->
<link href="styles/general.css" rel="stylesheet" type="text/css">
<link href="styles/wiki.css" rel="stylesheet" type="text/css">
</head>
<body class="d-flex flex-column h-100 bg">
<div class="container my-auto" id="mainContainer">
<div class="row justify-content-center ">
<div class="col-xs-10 col-md-8" id="main">
<div class="header">
<div class="container">
<div class="row justify-content-center text-center px-5">
<h1><strong>Wikipedia</strong></h1>
</div>
<hr>
</div>
</div>
<div id="content">
<div class="text-center">
<div class="input-group" id="search">
<input type="text" class="form-control" placeholder="Search for..." id="query">
<span class="input-group-btn">
<button class="btn btn-customize" type="button" onclick="searchResults()">GO</button>
</span>
</div><!-- /input-group -->
<div id="random">
<p><a href="https://en.wikipedia.org/wiki/Special:Random" target="_blank"><i>Or click here for a random article</i></a></p>
</div>
</div>
<div id="results"></div>
</div>
</div>
</div>
</div>
<footer class="footer w-100">
<div class="container-fluid">
<p class="text-right">Made by <a href="http://www.inescoelho.info/" target="_blank">Inês Coelho</a> (2017)</p>
</div>
</footer>
<!-- jQuery -->
<script src="libraries/jquery/jquery-3.2.1.min.js"></script>
<!-- Plugin JavaScript -->
<script src="libraries/pooper/pooper.js"></script>
<script src="libraries/pooper/tooltip.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="libraries/bootstrap-4.0.0-beta.2-dist/js/bootstrap.min.js"></script>
<!-- Theme JavaScript -->
<script src="js/wikipedia.js"></script>
</body>
</html>