diff options
author | Oxbian <got.dacs@slmail.me> | 2023-06-26 23:38:53 +0200 |
---|---|---|
committer | Oxbian <got.dacs@slmail.me> | 2023-06-26 23:38:53 +0200 |
commit | eef1f7a205d773e78aac2a92b909912d9aaf6924 (patch) | |
tree | 0b3a9adf46bea1cb3e08577a227021d663ef938a /templates | |
parent | 09f330896679c252ef0b1c588bf8704a55d7cead (diff) | |
download | ArKa-Blog-eef1f7a205d773e78aac2a92b909912d9aaf6924.tar.gz ArKa-Blog-eef1f7a205d773e78aac2a92b909912d9aaf6924.zip |
Adding tags pages
Diffstat (limited to 'templates')
-rw-r--r-- | templates/tags_template.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/templates/tags_template.html b/templates/tags_template.html new file mode 100644 index 0000000..6e84ddf --- /dev/null +++ b/templates/tags_template.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<html lang="fr"> +<head> + <!-- Metadonnées --> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <!-- CSS & Atom --> + <link rel="alternate" href="../../atom.xml" type="application/atom+xml" title="RSS"> + <link rel="stylesheet" href="../../assets/css/style.css"> + <link rel="shortcut icon" href="../../assets/favicon/favicon.ico" type="image/x-icon"> + + <title>Tag: $TITLE</title> +</head> +<body> + <!-- En tête --> + <header> + <nav> + <ul> + <li><a href="../../index.html">Accueil</a></li> + <li><a href="../../pages/how-to-read.html">Comment lire ce blog ?</a></li> + <li><a href="../../pages/about.html">À Propos</a></li> + <li><a href="../../atom.xml">RSS</a></li> + </ul> + </nav> + </header> + + <!-- Contenu principale --> + <main> + <article> + <h1>$TITLE</h1> + $CONTENT + </article> + </main> + + <!-- Bas de page --> + <hr> + <footer> + <p>Contactez-moi pour toute question ou discussion, je réponds assez vite en général.</p> + + <!-- Réseaux sociaux--> + <div id="social"> + <ul> + <li><a class="matrix" href="https://matrix.to/#/@oxbian:matrix.org">Matrix</a></li> + <li><a rel="me" class="mastodon" href="https://social.linux.pizza/@Oxbian">Mastodon</a></li> + <li><a class="mail" href="mailto:oxbian.noch@simplelogin.com">Mail</a></li> + </ul> + </div> + </footer> +</body> +</html> |