forked from adityam/pandoc-templates
-
Notifications
You must be signed in to change notification settings - Fork 22
/
website.html
83 lines (68 loc) · 2.22 KB
/
website.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
<!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$"$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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--This page was produced by pandoc using a shell script. See http://wcm1.web.rice.edu/colophon.html for more information.-->
$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$$if(pagetitle)$$pagetitle$ | $endif$W. Caleb McDaniel</title>
$if(highlighting-css)$
<style type="text/css">
$highlighting-css$
</style>
$endif$
$for(css)$
<link rel="stylesheet" href="$css$" $if(html5)$$else$type="text/css" $endif$/>
$endfor$
$if(math)$
$math$
$endif$
$for(header-includes)$
$header-includes$
$endfor$
</head>
<body>
<div class="container">
<div class="row">
<div class="span2"> </div>
<div class="span7">
$for(include-before)$
$include-before$
$endfor$
<article>
$if(category)$
<!--This text is produced by a custom variable in the pandoc template called "category." The value is set by the shell script when processing posts.-->
<div id="category">$category$</div>$endif$
$if(title)$
<!--The title is produced by the pandoc template using the title block at the top of the markdown file-->
<h1>$title$</h1>
$endif$
$if(author)$
<!--The author is produced by the pandoc template using the title block at the top of the markdown file-->
<div id="dateline">
Posted by $author$
$if(date)$
<!--The date is produced by the pandoc template using the title block at the top of the markdown file-->
on $date$$endif$
</div>
$endif$
<!--Begin content of the main markdown file for this page, which is processed by pandoc and output as html.-->
$body$
<!--End content from the main markdown file for this page.-->
</article>
$for(include-after)$
$include-after$
$endfor$
</div>
<div class="span3"> </div>
</div>
</div>
</body>
</html>