Le site web bebou.netlib.re - retour accueil
git clone git://bebou.netlib.re/bebou
Log | Files | Refs |
html (645B)
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 $([ "$FILE" = "contents/index.sh" ] || echo "<p>$subtitle</br><a href='/'>retour accueil</a></p>") 17 </header> 18 <body> 19 <main> 20 $(the tdm) 21 $(the main) 22 </main> 23 </body> 24 </html> 25 @@ 26 }