diff options
author | Oxbian <got.dacs@slmail.me> | 2023-04-02 22:42:10 +0200 |
---|---|---|
committer | Oxbian <got.dacs@slmail.me> | 2023-04-02 22:42:10 +0200 |
commit | ede72d38ccb920ddf92104cf899bf1e461978a4e (patch) | |
tree | 6c3710963b22af04df191eb53b83d0c2841fa8d8 /tools/page_template.html | |
download | ArKa-Blog-ede72d38ccb920ddf92104cf899bf1e461978a4e.tar.gz ArKa-Blog-ede72d38ccb920ddf92104cf899bf1e461978a4e.zip |
Init commit\nAjout du générateur de page html à partir des fichiers markdown, d'un style basique inspiré du blog de ploum.net.
Diffstat (limited to 'tools/page_template.html')
-rw-r--r-- | tools/page_template.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tools/page_template.html b/tools/page_template.html new file mode 100644 index 0000000..3dda284 --- /dev/null +++ b/tools/page_template.html @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<html lang="fr"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="description" content="$DESC"> + <meta property="og:title" content="$TITLE"> + <meta property="og:type" content="article" > + <meta property="og:article:author" content="Oxbian"> + <meta property="og:article:published_time" content="$DATE" > + <meta property="og:image" content="$IMAGE_PREVIEW" > + <title>$TITLE</title> + <link rel="alternate" href="../rss.xml" type="application/rss+xml" title="RSS"> + <link rel="stylesheet" href="../assets/css/style.css"> + <link rel="shortcut icon" href="../assets/favicon/favicon.ico" type="image/x-icon"> +</head> +<body> + <header> + <div class="navbar"> + <a href="../index.html">Accueil</a> + <a href="../pages/howtoread.html">Comment lire ce blog ?</a> + <a href="../pages/about.html">À Propos</a> + </div> + </header> + <main> + <article> + <h1>$TITLE</h1> + $CONTENT + </article> + </main> + <footer> + <p>Contactez-moi pour toute question ou discussion, je répond assez vite en général.</p> + <ul class="contact"> + <li><a class="matrix" href="https://matrix.to/#/@oxbian:matrix.org">Matrix</a></li> + <li><a 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> + </footer> +</body> +</html>
\ No newline at end of file |