summaryrefslogtreecommitdiff
path: root/web/templates/default.html
blob: 866965a4b4b04149ec15ae0bc536f4c3a3523a6d (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
58
59
60
61
62
63
<?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>
        <!-- Fork me on Github -->
        <a href="https://github.com/jaspervdj/hakyll"><img style="position: absolute; top: 0; right: 0; border: 0; margin: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
        <div id="main">
            <div id="header">
                <a href="/">
                    <img src="/images/lambda.png" alt="lambda" />
                    Hakyll
                </a>
            </div>
            <!-- Sidebar. -->
            <div id="sidebar">
                <h1>Navigation</h1>
                <a href="/index.html">home</a>
                <a href="/tutorials.html">tutorials</a>
                <a href="/libraries.html">libraries</a>
                <a href="/reference.html">reference</a>
                <a href="/about.html">about</a>
                <a href="/tutorials/faq.html">faq</a>
                <a href="/examples.html">examples</a>
                <a href="/releases.html">releases</a>
                <a href="https://jaspervdj.be/contact.html#donate" target="_blank">donate</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>