Un générateur de site statique - retour accueil
git clone git://bebou.netlib.re/catium
Log | Files | Refs | README |
commit 6bd4dd56dce8599f11e64785b3f76b03194ce541 parent 774a5c321aa1b78a3266ca0158cdf6aecadbc81a Auterice: Arthur Pons <arthur.pons@unistra.fr> Date: Sun, 3 Mar 2024 12:11:47 +0100 Meilleur layout de base Diffstat:
M | layouts/html | | | 13 | ++++++++++--- |
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/layouts/html b/layouts/html @@ -1,8 +1,14 @@ -layout() <<@@ cat +layout() { +<<@@ cat +<!DOCTYPE html> <html> -<head> - ${STYLE:+<link rel="stylesheet" href="$STYLE" />} +<head> <title>${title?La page dont le chemin s'affiche au dessus nécessite un titre}</title> + ${STYLE:+<link rel="stylesheet" href=\"$STYLE\" />} + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width,initial-scale=1.0"> + <meta name="description" content="$description" /> + <meta name="author" content="$author" /> </head> <body> <main> @@ -14,3 +20,4 @@ layout() <<@@ cat </body> </html> @@ +}