blob: 57a5a52bc2f9729f374a9d7186ec4fccc228cada (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Hakyll - $title$</title>
<!-- Stylesheets. -->
<link rel="stylesheet" type="text/css" href="/css/default.css" />
<link rel="stylesheet" type="text/css" href="/css/syntax.css" />
<!-- Metadata. -->
<meta name="keywords" content="hakyll,static site generator,static,site,generator,haskell,blog"/>
<meta name="description" content="Hakyll - A Static Site Generator in Haskell."/>
</head>
<body>
<div id="main">
<div id="header">
<img src="/images/lambda.png" alt="lambda" />
Hakyll - $title$
</div>
<!-- Sidebar. -->
<div id="sidebar">
<h1>Navigation</h1>
$sidebar$
<!-- Flattr button -->
<h1>Donate</h1>
<a href="http://flattr.com/thing/291889/Hakyll" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png"
alt="Flattr this" title="Flattr this" border="0" /></a>
</div>
<div id="content">
$body$
</div>
<div id="footer">
Site proudly generated by <a href="http://github.com/jaspervdj/hakyll">hakyll</a>.
</div>
</div>
<!-- Google Analytics -->
<script type="text/javascript">
var gaJsHost = (('https:' == document.location.protocol) ? 'https://ssl.' : 'http://www.');
document.write(unescape('%3Cscript src=\'' + gaJsHost + 'google-analytics.com/ga.js\' type=\'text/javascript\'%3E%3C/script%3E'));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker('UA-11993001-1');
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>
|