-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
104 lines (101 loc) · 3.47 KB
/
template.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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$else$ lang="en" xml:lang="en"$endif$>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="generator" content="pandoc" />
$for(author-meta)$
<meta name="author" content="$author-meta$" />
$endfor$
$if(date-meta)$
<meta name="date" content="$date-meta$" />
$endif$
<title>$if(title-prefix)$$title-prefix$ - $endif$$pagetitle$</title>
<!-- <style type="text/css">code{white-space: pre;}</style> -->
$if(quotes)$
<style type="text/css">q { quotes: "“" "”" "‘" "’"; }</style>
$endif$
$if(highlighting-css)$
<style type="text/css">
$highlighting-css$
code.sourceCode { white-space: pre-wrap; } /* override pandoc default */
</style>
$endif$
$for(css)$
<link rel="stylesheet" href="$css$" $if(html5)$$else$type="text/css" $endif$/>
$endfor$
<!--<link rel="stylesheet" href="bootstrap.united.min.css" $if(html5)$$else$type="text/css" $endif$/>-->
$if(math)$
$math$
$endif$
$for(header-includes)$
$header-includes$
$endfor$
</head>
<body>
$if(title)$
<div class="navbar navbar-static-top">
<div class="navbar-inner">
<div class="container">
<span class="doc-title">COA1 – $title$</span>
<ul class="nav pull-right doc-info">
$if(date)$
<li><p class="navbar-text">$date$</p></li>
$endif$
<li><p class="navbar-text"><a href="index.html">home</a></p></li>
<li><p class="navbar-text"><a href="oh.html">OH</a></p></li>
<li><p class="navbar-text"><a href="policies.html">policies</a></p></li>
<li><p class="navbar-text"><a href="https://kytos.cs.virginia.edu/coa1/quizzes/">quizzes</a></p></li>
<li><p class="navbar-text"><a href="schedule.html">schedule</a></p></li>
<li><p class="navbar-text"><a href="https://kytos.cs.virginia.edu/coa1/">submissions</a></p></li>
</ul>
</div>
</div>
</div>
$endif$
<blockquote style="background-color:#fbb; font-size:150%">This page does not represent <a href="../">the most current semester</a> of this course; it is present merely as an archive.</blockquote>
<div class="container">
<div class="row">
$if(toc)$
<div id="$idprefix$TOC" class="span3">
<div class="well toc">
<ul>
<li class="nav-header">Table of Contents</li>
</ul>
$toc$
</div>
</div>
$endif$
<div class="span$if(toc)$9$else$12$endif$">
$for(include-before)$
$include-before$
$endfor$
$body$
$for(include-after)$
$include-after$
$endfor$
</div>
</div>
</div>
<footer>
$if(author)$
<span class="authors">
Content copyright © $year$
$for(author)$
<span class="author">$author$</span>
$endfor$
</span>
$else$
Copyright © $year$ Luther Tychonievich.
$endif$
$if(license)$
<p>Released under the $license$ license.</p>
$else$
<p>Released under the <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /> CC-BY-NC-SA 4.0</a> license</a>.
</p>
$endif$
<br/>
Last updated $datetime$
</footer>
</body>
</html>