diff options
Diffstat (limited to 'templates/dir.html')
-rw-r--r-- | templates/dir.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/dir.html b/templates/dir.html new file mode 100644 index 0000000..6cfdcb4 --- /dev/null +++ b/templates/dir.html | |||
@@ -0,0 +1,17 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html lang="en"> | ||
3 | <head> | ||
4 | {% include "head.html" %} | ||
5 | <meta property="og:title" content="{{ owner }}’s web index"> | ||
6 | <meta property="og:type" content="website"> | ||
7 | <meta property="og:url" content="{{ this_url }}"> | ||
8 | <title>shrt</title> | ||
9 | </head> | ||
10 | <body> | ||
11 | <div id="Body"> | ||
12 | {% include "nav.html" %} | ||
13 | <div>{{ items }}</div> | ||
14 | {% include "footer.html" %} | ||
15 | </div> | ||
16 | </body> | ||
17 | </html> | ||