diff options
author | n-peugnet <n.peugnet@free.fr> | 2022-04-29 13:28:33 +0200 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2022-04-29 13:28:33 +0200 |
commit | 6f586bd8314571785dcc99b293f4e14594b369af (patch) | |
tree | cb97ab1493fc2e5bb44f32eeb1c1f8da54bec50d /_templates/index.html | |
parent | e0f5174b7ef47ed2373a8f20608e7c65c5f4a3b4 (diff) | |
download | club1-docs-n-peugnet-html-index.tar.gz club1-docs-n-peugnet-html-index.zip |
feat: add very basic index templaten-peugnet-html-index
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/index.html')
-rw-r--r-- | _templates/index.html | 17 |
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> |