diff options
author | Case Duckworth | 2024-03-18 10:25:28 -0500 |
---|---|---|
committer | Case Duckworth | 2024-03-18 10:25:28 -0500 |
commit | 0a0649baafd381086de630dc8f475782c74f6f6f (patch) | |
tree | fdcea6389b392a6b68c9a9c7f69479f8829737c2 /template.html | |
parent | Change static copying/ update readme (diff) | |
download | schwa-0a0649baafd381086de630dc8f475782c74f6f6f.tar.gz schwa-0a0649baafd381086de630dc8f475782c74f6f6f.zip |
Move style and template to example/
Diffstat (limited to 'template.html')
-rw-r--r-- | template.html | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/template.html b/template.html deleted file mode 100644 index c67ae0d..0000000 --- a/template.html +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
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> | ||