Un générateur de site statique - retour accueil
Anonyme, en lecture seule : git clone git://bebou.netlib.re/catium
Authentifié·e, en écriture : git clone ssh://git@bebou.netlib.re:1459/srv/git/catium
Log | Files | Refs | README | zip | tar.gz |
html (516B)
1 <<@@ cat
2 <!DOCTYPE html>
3 <html>
4 <head>
5 <title>${title:?"La page dont le chemin s'affiche au dessus nécessite un titre"}</title>
6 ${STYLE:+"<link rel=stylesheet href=$STYLE />"}
7 <meta charset="utf-8">
8 <meta name="viewport" content="width=device-width,initial-scale=1.0">
9 <meta name="generator" content="catium" />
10 <meta name="description" content="$description" />
11 <meta name="author" content="$author" />
12 </head>
13 <body>
14 <main>
15 $(show main)
16 </main>
17 <footer>
18 $(show footer)
19 </footer>
20 </body>
21 </html>
22 @@