-
Notifications
You must be signed in to change notification settings - Fork 1
/
custom.html
105 lines (80 loc) · 3.16 KB
/
custom.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CAEBAT OAS/VIBE</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="navbar-fixed-side.css">
<link rel="stylesheet" href="styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Pandoc commands -->
$if(quotes)$
<style type="text/css">q { quotes: "“" "”" "‘" "’"; }</style>
$endif$
$if(highlighting-css)$
<style type="text/css">$highlighting-css$</style>
$endif$
$if(math)$
$math$
$endif$
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="50">
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-lg-2">
<nav class="navbar navbar-inverse navbar-fixed-side">
<!-- Side Navigation Bar -->
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavBar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">CAEBAT OAS/VIBE</a>
</div>
<div class="collapse navbar-collapse" id="myNavBar">
<!--Navigation Items-->
$toc$
<br>
<a class="btn btn-primary" href="docs.pdf" role="button"><span class="glyphicon glyphicon-file"></span> Download PDF</a>
<p> </p>
</div>
</div>
</nav>
</div>
<div class="col-sm-9 col-lg-10">
<!-- Main Content -->
<h1 class="text-center">CAEBAT OAS/VIBE</h1>
<img class="center-block img-responsive" src="assets/00-logo.png" alt="logo" width="400px">
<p class="text-center">S. Allu, J.J. Billings, W. Elwasif, S. Kalnaus, A. Kumar, D. Lebrun-Grandie, A. McCaskey, S. Pannala, S. Simunovic, R.W. Smith, B. Turcksin, J. Turner</p>
<p class="text-center">12/1/2016, Production Release v1.2</p>
<p class="text-center">Document detailing the updated release to users of CAEBAT OAS and VIBE. Contains software description, installation, run instructions, and examples.</p>
<br>
<hr>
$body$
<br>
</div>
</div>
</div>
<script>
// adapt table of contents from pandoc for the bootstrap navigation bar
var firstUL = document.querySelector("ul");
firstUL.setAttribute("class", "nav navbar-nav");
var subULs = firstUL.getElementsByTagName("ul");
if (subULs.length > 0) {
for (i = 0; i < subULs.length; i++) {
subULs[i].setAttribute("class", "hidden")
}
}
// add bootstrap .table class to all table elements
var tables = document.querySelectorAll("table");
for (i = 0; i < tables.length; i++) {
tables[i].setAttribute("class", "table");
}
</script>
</body>
</html>