diff options
Diffstat (limited to 'kyrias_website/templates/base.html')
-rw-r--r-- | kyrias_website/templates/base.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/kyrias_website/templates/base.html b/kyrias_website/templates/base.html new file mode 100644 index 0000000..7664e57 --- /dev/null +++ b/kyrias_website/templates/base.html @@ -0,0 +1,41 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + {% assets "css_all" %} + <link rel="stylesheet" type="text/css" href="{{ ASSET_URL }}"> + {% endassets %} +{% block head %}{% endblock %} + </head> + + <body> + <header class="padded-box"> + <nav> + <ul> + <li><a href="{{ url_for("index") }}">index</a></li> + <li><a href="{{ url_for("archive") }}">archive</a></li> + <li><a href="{{ url_for("tags") }}">tags</a></li> + <li><a href="{{ url_for("page", path='about') }}">about</a></li> + </ul> + </nav> + </header> + <hr /> + <div class="padded-box"> +{% block content %}{% endblock %} + </div> + <hr /> + <footer id="bottom" class="padded-box"> + <div> + <p id="copy">© 2017 Johannes Löthberg</p> + </div> + + <div> + <ul id="contact-info"> + <li><a rel="me" href="mailto:johannes@kyriasis.com">Email</a></li> + <li><a rel="me" href="https://twitter.com/kyriasis">Twitter</a></li> + </ul> + </div> + </footer> + </body> +</html> |