forked from gvwilson/teachtogether.tech
-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.html
102 lines (102 loc) · 3.12 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$>
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
$for(author-meta)$
<meta name="author" content="$author-meta$" />
$endfor$
$if(date-meta)$
<meta name="dcterms.date" content="$date-meta$" />
$endif$
$if(keywords)$
<meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
$endif$
<title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
$if(quotes)$
q { quotes: "“" "”" "‘" "’"; }
$endif$
</style>
$if(highlighting-css)$
<style>
$highlighting-css$
</style>
$endif$
$for(css)$
<link rel="stylesheet" href="$css$" />
$endfor$
$if(math)$
$math$
$endif$
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
$for(header-includes)$
$header-includes$
$endfor$
</head>
<body>
$for(include-before)$
$include-before$
$endfor$
<div class="container-fluid">
<div class="row row-scrollable">
<div class="col-md-2 col-toc">
<a href="#title-block-header"><img src="assets/logo.svg" alt="Teaching Tech Together" width="100%" /></a>
$if(toc)$
<nav id="$idprefix$TOC" role="doc-toc">
$table-of-contents$
</nav>
<p>
<a href="#s:license"><img src="assets/cc-by-nc.svg" alt="CC-BY-NC License" width="50%" /></a>
<a href="mailto:[email protected]?subject=Teaching Tech Together"><img src="assets/email.svg" alt="Email" width="20%" /></a>
<a href="https://github.com/gvwilson/teachtogether.tech/"><img src="assets/github.svg" alt="GitHub" width="20%" /></a>
</p>
$endif$
</div>
<div class="col-md-8 col-body">
<header>
<h1 class="title">$title$</h1>
$if(subtitle)$
<p class="subtitle">$subtitle$</p>
$endif$
$for(author)$
<p class="author"><a href="http://third-bit.com">$author$</a></p>
$endfor$
$if(date)$
<p class="date">$date$</p>
$endif$
</header>
<div class="dedication">
<p><strong>Dedication</strong></p>
<p>
For my mother, Doris Wilson,<br/>
who taught hundreds of children to read and to believe in themselves.<br/>
</p>
<p>
And for my brother Jeff, who did not live to see it finished.<br/>
"Remember, you still have a lot of good times in front of you."<br/>
</p>
<p>
All royalties from the sale of this book are being donated to<br/>
the Carpentries,<br/>
a volunteer organization that teaches<br/>
foundational coding and data science skills<br/>
to researchers worldwide.
</p>
</div>
$body$
</div>
</div>
</div>
$for(include-after)$
$include-after$
$endfor$
</body>
</html>