-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbootstrap.html5
138 lines (131 loc) · 4.36 KB
/
bootstrap.html5
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html$if(lang)$ lang="$lang$"$endif$>
<head>
<meta charset="utf-8">
<meta name="generator" content="pandoc">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<!-- Le styles -->
<link href="twitter-bootstrap/bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="twitter-bootstrap/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link href="bootstrap-pandoc.css" rel="stylesheet">
$for(author-meta)$
<meta name="author" content="$author-meta$">
$endfor$
$if(date-meta)$
<meta name="dcterms.date" content="$date-meta$">
$endif$
<title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="twitter-bootstrap/bootstrap/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="twitter-bootstrap/bootstrap/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="twitter-bootstrap/bootstrap/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="twitter-bootstrap/bootstrap/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="twitter-bootstrap/bootstrap/ico/apple-touch-icon-57-precomposed.png">
$if(quotes)$
<style type="text/css">
q { quotes: "“" "”" "‘" "’"; }
</style>
$endif$
$if(highlighting-css)$
<style type="text/css">
$highlighting-css$
</style>
$endif$
$for(css)$
<link rel="stylesheet" href="$css$">
$endfor$
$if(math)$
$math$
$endif$
$for(header-includes)$
$header-includes$
$endfor$
</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>
$if(pagetitle)$
<a class="brand" href="#">$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</a>
$endif$
<div class="nav-collapse collapse">
<p class="navbar-text pull-right">
Logged in as <a href="#" class="navbar-link">Username</a>
</p>
<ul class="nav">
<li class="active"><a href="#header">Start</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
$for(include-before)$
$include-before$
$endfor$
<header class="hero-unit" id="header">
$if(title)$
<h1 class="title">$title$</h1>
$for(author)$
<h2 class="author">$author$</h2>
$endfor$
$if(date)$
<h3 class="date">$date$</h3>
$endif$
</header>
$endif$
<div class="row-fluid">
$if(toc)$
<nav id="$idprefix$TOC" class="span4">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Table of Contents</li>
$toc$
<li class="active"><a href="#">Link</a></li>
</ul>
</div><!--/.well -->
</nav><!--/span-->
$endif$
<div class="span8">
<div class="span12">
$body$
</div><!--/span-->
</div><!--/span-->
</div><!--/row-->
<hr>
<footer>
<p class="author">$for(author)$$author$$sep$, $endfor$$if(date)$, $date$.$else$.$endif$</p>
<p class="credit">Created with <a href="http://johnmacfarlane.net/pandoc/">pandoc</a>, styled with <a href="http://twitter.github.com/bootstrap/">bootstrap</a>.</p>
</footer>
</div><!--/.fluid-container-->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="twitter-bootstrap/bootstrap/js/jquery.js"></script>
<script src="twitter-bootstrap/bootstrap/js/bootstrap.js"></script>
$for(include-after)$
$include-after$
$endfor$
</body>
</html>