diff options
Diffstat (limited to 'templates/en/page_template.html')
-rw-r--r-- | templates/en/page_template.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/templates/en/page_template.html b/templates/en/page_template.html new file mode 100644 index 0000000..d10ebee --- /dev/null +++ b/templates/en/page_template.html @@ -0,0 +1,56 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <!-- Metadata --> + <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"> + + <!-- CSS & Atom --> + <link rel="alternate" href="../../atom_en.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>$TITLE</title> +</head> +<body> + <!-- Header --> + <header> + <nav> + <ul> + <li><a href="../../index_en.html">Home</a></li> + <li><a href="../../pages/en/how-to-read.html">How to read ?</a></li> + <li><a href="../../pages/en/about.html">About</a></li> + <li><a href="../../atom_en.xml">RSS</a></li> + </ul> + </nav> + </header> + + <!-- Main content --> + <main> + <article> + <h1>$TITLE</h1> + $CONTENT + </article> + </main> + + <!-- Footer --> + <hr> + <footer> + <p>Contact-me for any questions, I answer quite fast in general.</p> + + <!-- Contact --> + <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> |