-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
49 lines (39 loc) · 1.59 KB
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Google Plus User Analysis</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta type="robots" content="nofollow,noindex">
<link rel="stylesheet" href="./static/bootstrap/css/bootstrap.css" type="text/css" media="screen" title="no title" charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js" type="text/javascript" charset="utf-8"></script>
<script src="./static/bootstrap/js/bootstrap.min.js" type="text/javascript" charset="utf-8"></script>
{% block utilities %}{% endblock %}
{% block scripts %}{% endblock %}
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid" style="padding-left:110px;">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/">Google Plus Evaluator</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="/">Home</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container-fluid" style="margin-top:50px;">
<div class="inner-fluid">
{% block content %}{% endblock %}
</div>
</div>
</body>
</html>