diff options
author | MetroWind <chris.corsair@gmail.com> | 2025-09-21 21:34:34 -0700 |
---|---|---|
committer | MetroWind <chris.corsair@gmail.com> | 2025-09-21 21:34:34 -0700 |
commit | e9686b6ab684785d5f9acbc98942beae94817562 (patch) | |
tree | 10ffe1b7b209aee2f0513cd0c42def2c07272ea2 /templates/dir.html | |
parent | b2e812941766e11394bdb124ff73d1fe544849a2 (diff) |
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> | ||