all repos — myprecious @ 5acbe103e332613faff043d102cc215dc13380d2

A lightweight web service to backup precious game saves.

myprecious/templates/base.html (view raw)

 1<!DOCTYPE html>
 2<html lang="en">
 3
 4<head>
 5    <meta charset="utf-8">
 6    <meta name="viewport" content="width=device-width, initial-scale=1">
 7    {% block head %}
 8    <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
 9    <title>myprecious</title>
10    {% endblock %}
11</head>
12<body>
13    <header>
14        <nav>
15            {% block header %}
16            <a href="/">home</a>
17            {% if user.is_authenticated %}
18            <a href="/upload">upload</a>
19            <a href="/logout">logout</a>
20            {% else %}
21            <a href="/login">login</a>
22            <a href="/register">register</a>
23            {% endif %}
24            {% endblock %}
25        </nav>
26        <hr>
27    </header>
28    <main>
29        <h1>{% block title %}{% endblock %}</h1>
30        <p></p>
31        {% block content %}{% endblock %}
32        <nav>
33            {% block footer %}
34            <span>questions: </span>
35            <a href="#">what is this?</a>
36            <a href="https://birabittoh.github.io/">who made this?</a>
37            {% endblock %}
38        </nav>
39    </main>
40</body>
41</html>