-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathlayout.html
More file actions
46 lines (37 loc) · 1.53 KB
/
Copy pathlayout.html
File metadata and controls
46 lines (37 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Explainer - Common Search</title>
<link rel="stylesheet" href="/static/css/bootstrap.min.css" media="screen">
<script src="/static/js/lodash.min.js"></script>
<script src="/static/js/jquery.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
<script src="/static/js/explainer.js"></script>
<link rel="icon" href="/static/images/favicon.ico" type="image/x-icon" />
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="/" class="navbar-brand">Common Search Explainer</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li {% if request.path == "/" %}class="active"{% endif %}><a href="/">Search test</a></li>
<li {% if request.path == "/url" %}class="active"{% endif %}><a href="/url">URL test</a></li>
<li><a href="https://about.commonsearch.org/developer/result-quality">About</a></li>
</ul>
</div>
</div>
</div>
<div class="container" style="margin-top:62px;">
{% block content %}{% endblock %}
</div>
</body>
</html>