aboutsummaryrefslogtreecommitdiff
path: root/_templates
diff options
context:
space:
mode:
authorn-peugnet <n.peugnet@free.fr>2022-04-29 13:28:33 +0200
committerNicolas Peugnet <n.peugnet@free.fr>2022-05-01 17:25:04 +0200
commit273e52b04cf6e45c2226bc5b26aba914b426922a (patch)
treecb97ab1493fc2e5bb44f32eeb1c1f8da54bec50d /_templates
parente0f5174b7ef47ed2373a8f20608e7c65c5f4a3b4 (diff)
downloadclub1-docs-273e52b04cf6e45c2226bc5b26aba914b426922a.tar.gz
club1-docs-273e52b04cf6e45c2226bc5b26aba914b426922a.zip
feat: add very basic index template
It based on nginx's one, with the meta viewport added, as it is not there by default (see https://mailman.nginx.org/pipermail/nginx-devel/2020-November/013609.html) It could be customized later.
Diffstat (limited to '_templates')
-rw-r--r--_templates/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/_templates/index.html b/_templates/index.html
new file mode 100644
index 0000000..777fa9d
--- /dev/null
+++ b/_templates/index.html
@@ -0,0 +1,17 @@
+<html>
+<head>
+ <title>Index of /docs/</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
+</head>
+<body>
+ <h1>Index of /docs/</h1>
+ <hr/>
+
+<pre>
+<a href="en/">en/</a>
+<a href="fr/">fr/</a>
+</pre>
+
+ <hr/>
+</body>
+</html>