diff options
author | Case Duckworth | 2024-03-18 00:23:16 -0500 |
---|---|---|
committer | Case Duckworth | 2024-03-18 00:23:16 -0500 |
commit | c2a3fda0cf2aef901d1280bea792bf109c6d3d73 (patch) | |
tree | 3576eb01b78742caf16e254afcd8ff0a1ea41f3d /template.html | |
parent | Delete header (diff) | |
download | schwa-c2a3fda0cf2aef901d1280bea792bf109c6d3d73.tar.gz schwa-c2a3fda0cf2aef901d1280bea792bf109c6d3d73.zip |
Add templating, static files; add sample template+style
Diffstat (limited to 'template.html')
-rw-r--r-- | template.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/template.html b/template.html new file mode 100644 index 0000000..c67ae0d --- /dev/null +++ b/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> | ||