forked from eve-val/evecerts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
40 lines (40 loc) · 1.24 KB
/
base.html
File metadata and controls
40 lines (40 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}{{ title }}{% endblock %} | EVE Certs</title>
<link rel="stylesheet" href="/css/bootstrap.min.css" />
<style>
body { padding-top: 60px; }
</style>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<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="/">EVECerts</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="/browse">Browse</a></li>
<li class="divider-vertical"></li>
<li><a href="/apikeys">My API Keys</a></li>
<li><a href="/certs">My Certifications</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<h1>{% block pagetitle %}{{ title }}{% endblock %}</h1>
<hr />
{% block content %}
{% endblock %}
<hr/>
</div>
<script type="text/javascript" src="/js/bootstrap.min.js"></script>
</body>
</html>