-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathshowcase.html
More file actions
114 lines (92 loc) · 3.39 KB
/
showcase.html
File metadata and controls
114 lines (92 loc) · 3.39 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
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
<!DOCTYPE html>
<html>
<head>
<title>BUMPER. Find Out How Other Fixed It</title>
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdn.rawgit.com/konpa/devicon/89f2f44ba07ea3fff7e561c2142813b278c2d6c6/devicon.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,100,100italic,300,300italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/font-mfizz/font-mfizz.css">
<link rel="stylesheet" type="text/css" href="css/css.css">
<script type="text/javascript">
$(document).ready(function() {
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
});
</script>
</head>
<body class="misc">
<div class="container">
<h1 style="text-align:center" id="search-bar-header"><span class="logo-bumper">
<span class="blue">b</span>
<span class="red">u</span>
<span class="yellow">m</span>
<span class="blue">p</span>
<span class="green">e</span>
<span class="red">r</span></span> <br />
Find Out How <u>Others</u> Fixed It
</h1>
<br>
<br>
<br>
<br>
<br>
<iframe width="100%" height="641px" src="https://www.youtube.com/embed/zA8-kpNRCe4" frameborder="0" allowfullscreen></iframe>
<br>
<br>
<br>
<br>
<br>
</div>
<footer class="footer">
<div class="container">
<div class="col-md-12">
<div class="col-md-2 footer-link">
<p>
<a href="showcase.html">Showcase</a>
</p>
</div>
<div class="col-md-3 footer-link">
<a id="query-mode" onclick="toogleQueryingMode();">
Advanced Query Mode
</a>
</div>
<div class="col-md-1 footer-link">
<p>
<a href="api.html">API</a>
</p>
</div>
<div class="col-md-2 footer-link">
<p>
<a href="datasets.html">Datasets</a>
</p>
</div>
<div class="col-md-2 ">
<p>
<a href="publications.html">Publications</a>
</p>
</div>
<div class="col-md-2 ">
<p>
<a href="about.html">About</a>
</p>
</div>
</div>
</div>
</footer>
</body>
</html>