diff options
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..83b5cc3 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,51 @@ +<!doctype html> +<html lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title>{% block title %} {% endblock title %}</title> + <link rel="stylesheet" href="/style.css" type="text/css" /> + <link + rel="alternate" + type="application/rss+xml" + title="sakamoto.network" + href="/rss.xml" + /> + <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> + <meta property="og:type" content="website" /> + <meta property="og:description" content="sakamoto.network" /> + <meta + name="viewport" + content="width=device-width, initial-scale=1.0, user-scalable=yes" + /> + <meta name="color-scheme" content="light dark" /> + </head> + + <body> + <!-- from sizeof.cat --> + <script type="text/javascript" src="/favicons.js"></script> + <script> + document.addEventListener("DOMContentLoaded", function (event) { + favicons(); + }); + </script> + + <header> + <nav> + <a class="left" href="/">sakamoto</a> + <a class="left" href="/about">about</a> + <a class="left" href="https://git.sakamoto.network">git</a> + <a class="left" href="/blog">blog</a> + <a class="right" href="/rss.xml">rss</a> + <a class="right" href="/atom.xml">atom</a> + </nav> + </header> + + <hr /> + + <main>{% block content %} {% endblock content %}</main> + + <hr /> + + <footer>fish</footer> + </body> +</html> |
