about summary refs log tree commit diff stats
path: root/template.html
blob: c67ae0d1b283985cc17c31bd7488acf7ec507899 (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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>{{FILENAME}}</title>
        <link rel="stylesheet" type="text/css" href="style.css">
    </head>
    <body>
        <header>
            <h1><!--NORMAL-->{{DIRECTORY}}/<!--/NORMAL-->{{FILENAME}}</h1>
            <!--INDEX-->
            {{DESCRIPTION}}
            <!--/INDEX-->
            <!--NORMAL-->
            <nav>
                <ul>
                    <li><a href="/">index</a></li>
                    <li><a href="{{RAWFILE}}">source</a></li>
                </ul>
            </nav>
            <!--/NORMAL-->
        </header>
        <main>
            {{CONTENT}}
        </main>
        <footer>
            <p>(C) Case Duckworth. {{CLONE}}
            </p>
        </footer>
    </body>
</html>