Skip to content

Commit d46297d

Browse files
committed
Boostrap files plus a mostly empty index.md
1 parent 6551c59 commit d46297d

11 files changed

+9645
-0
lines changed

_config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
markdown: redcarpet
2+
redcarpet:
3+
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]

_layouts/default.html

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>{{ site.name }}</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta name="description" content="{{ site.description }}">
8+
<meta name="author" content="">
9+
10+
<!-- Le styles -->
11+
<link href="/css/bootstrap.css" rel="stylesheet">
12+
<style>
13+
body {
14+
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
15+
}
16+
</style>
17+
<link href="/css/bootstrap-responsive.css" rel="stylesheet">
18+
19+
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
20+
<!--[if lt IE 9]>
21+
<script src="/js/html5shiv.js"></script>
22+
<![endif]-->
23+
24+
</head>
25+
26+
<body>
27+
28+
<div class="navbar navbar-inverse navbar-fixed-top">
29+
<div class="navbar-inner">
30+
<div class="container">
31+
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
32+
<span class="icon-bar"></span>
33+
<span class="icon-bar"></span>
34+
<span class="icon-bar"></span>
35+
</button>
36+
<a class="brand" href="#">MOSAIC</a>
37+
<div class="nav-collapse collapse">
38+
<ul class="nav">
39+
<li class="active"><a href="#">Home</a></li>
40+
<li><a href="http://mosaic-data-model.github.io/mosaic-specification/">Specification</a></li>
41+
<li><a href="http://mosaic-data-model.github.io/mosaic-python/">Python library</a></li>
42+
</ul>
43+
</div><!--/.nav-collapse -->
44+
</div>
45+
</div>
46+
</div>
47+
48+
<div class="container">
49+
50+
{{ content }}
51+
52+
</div> <!-- /container -->
53+
54+
</body>
55+
</html>

0 commit comments

Comments
 (0)