forked from OBOFoundry/OBOFoundry.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
browse_layout.html
33 lines (26 loc) · 867 Bytes
/
browse_layout.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{{ page.title }}</title>
<meta name="viewport" content="width=device-width">
<meta name="description" content="Ontology Website">
<meta name="author" content="Chris Mungall">
<script src="{{ site.baseurl}}js/all.js" type="text/javascript"></script>
<link href="{{ site.baseurl}}css/all.css" rel="stylesheet">
</head>
<body data-spy="scroll" data-target=".subnav" data-offset="50">
{% include navbar.html %}
<div class="container">
<div class="content">
<div class="row">
<div class="span7 columns">
{{ content }}
</div>
</div>
</div>
</div>
{% include footer.html %}
</body>
</html>