about summary refs log tree commit diff stats
path: root/example/template.html
diff options
context:
space:
mode:
Diffstat (limited to 'example/template.html')
-rw-r--r--example/template.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/example/template.html b/example/template.html new file mode 100644 index 0000000..c67ae0d --- /dev/null +++ b/example/template.html
@@ -0,0 +1,31 @@
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <title>{{FILENAME}}</title>
6 <link rel="stylesheet" type="text/css" href="style.css">
7 </head>
8 <body>
9 <header>
10 <h1><!--NORMAL-->{{DIRECTORY}}/<!--/NORMAL-->{{FILENAME}}</h1>
11 <!--INDEX-->
12 {{DESCRIPTION}}
13 <!--/INDEX-->
14 <!--NORMAL-->
15 <nav>
16 <ul>
17 <li><a href="/">index</a></li>
18 <li><a href="{{RAWFILE}}">source</a></li>
19 </ul>
20 </nav>
21 <!--/NORMAL-->
22 </header>
23 <main>
24 {{CONTENT}}
25 </main>
26 <footer>
27 <p>(C) Case Duckworth. {{CLONE}}
28 </p>
29 </footer>
30 </body>
31</html>