Le site arthur.bebou.netlib.re - retour accueil
git clone git://bebou.netlib.re/arthur.bebou
Log | Files | Refs |
html (989B)
1 layout() { 2 <<@@ cat 3 <!DOCTYPE html> 4 <html lang="fr"> 5 <head> 6 <title>${title?La page dont le chemin s'affiche au dessus nécessite un titre}</title> 7 ${STYLE:+<link rel="stylesheet" href=\"$STYLE\" />} 8 <meta charset="utf-8"> 9 <meta name="viewport" content="width=device-width,initial-scale=1.0"> 10 <meta name="description" content="$description" /> 11 <meta name="author" content="$author" /> 12 <link rel="icon" href="/favicon.png" /> 13 </head> 14 <header> 15 <h1>$title</h1> 16 <p> 17 $([ "$file" = "contents/index.sh" -o "$file" = "contents/legal.sh" ] || echo "<a href="/">Retour accueil</a>") 18 </p> 19 </header> 20 <body> 21 <main> 22 $( [ "$file" = "contents/index.sh" ] || show tdm) 23 $(show main) 24 </main> 25 </body> 26 <footer> 27 Contact : arthur.pons (a bizarre) unistra.fr<br> 28 Code : <a href="http://git.bebou.netlib.re/arthur.bebou/log.html">http://git.bebou.netlib.re/arthur.bebou</a><br> 29 Généré avec un catium modifié pour faire un blog<br> 30 <a href="/legal.html">Mentions légales</a> 31 </footer> 32 </html> 33 @@ 34 }