diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2020-12-30 19:20:36 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2020-12-30 19:20:36 +0100 |
| commit | 8170b6616c13828b434e0103b362ca0e056309d0 (patch) | |
| tree | d7c8367ffc38c507a7cec22327a5e62a19ce5ae9 /template.html | |
| parent | 74a28fd0f2ccab43a51430dd29093053f9e366ea (diff) | |
| download | quatuorbellefeuille.com-8170b6616c13828b434e0103b362ca0e056309d0.tar.xz | |
Add template machinery
*Of course* it's going to be an ugly Bash script. Is there anything
else?
Diffstat (limited to 'template.html')
| -rw-r--r-- | template.html | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/template.html b/template.html new file mode 100644 index 0000000..bfb1550 --- /dev/null +++ b/template.html @@ -0,0 +1,64 @@ +<!DOCTYPE html> +<html lang="fr"> + <head> + <meta charset="utf-8"> + <title>{TITLE} - Quatuor Camelot</title> + <link rel="stylesheet" href="commun.css"> +{STYLESHEETS} + <link rel="alternate" type="application/rss+xml" href="feed.xml"> + </head> + <body> + <header class="banner"> + + <div class="brand"> + <a href="index.html"> + <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Golden_Sun_icon.png" + alt="logo"> + <h1 class="qname">Quatuor Camelot</h1> + </a> + </div> + + <nav> + <ol> + <li class="dropdown"> + <a href="quatuor.html">Le quatuor</a> + <ul> + <li><a href="vlad.html"><img src="https://static.wikia.nocookie.net/goldensun/images/8/87/Isaac2.gif">Vlad</a></li> + <li><a href="garet.html"><img src="https://static.wikia.nocookie.net/goldensun/images/3/3e/Garet_icon.gif">Garet</a></li> + <li><a href="ivan.html"><img src="https://static.wikia.nocookie.net/goldensun/images/3/3d/Ivan_platinum.gif">Ivan</a></li> + <li><a href="sofia.html"><img src="https://static.wikia.nocookie.net/goldensun/images/4/43/Mia.gif">Sofia</a></li> + </ul> + </li> + <li><a href="actualités.html">Actualités</a></li> + <li><a href="programmes.html">Programmes</a></li> + <li><a href="gallerie.html">Gallerie</a></li> + </ol> + </nav> + + <div class="lang"> + EN + </div> + + </header> + +{MAIN} + + <footer class="social"> + <img src="https://upload.wikimedia.org/wikipedia/en/9/9f/Twitter_bird_logo_2012.svg"> + <img src="https://upload.wikimedia.org/wikipedia/commons/c/c2/F_icon.svg"> + <a href="feed.xml"> + <img src="https://upload.wikimedia.org/wikipedia/en/4/43/Feed-icon.svg"> + </a> + <p class="contact"> + <a href="contact.html">Contact</a> + </p> + </footer> + + <footer class="legal"> + <p> + Mentions légales (<a href="https://feathericons.com">icônes</a>) + - Plan du site + </p> + </footer> + </body> +</html> |
