aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: c7dc9f0235e9bb960c23d7bb6494d76ea99994fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html lang="fr">

<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Budget — {% block title %}{% endblock title %}</title>
<link rel="stylesheet" href="{{ assets | get(key="main.css") }}">
<link rel="icon" href="{{ assets | get(key="icon.png") }}">

{% if connected_user %}
  <header class="g-Header">
    <div class="g-Header__Title">Budget</div>
      <form action="/logout" method="POST">
        {{ connected_user.name }}
        <input class="g-Header__Logout" type="submit" value="(Déconnexion)" />
      </form>
    </div>
  </header>
{% endif %}

{% if connected_user %}
  <nav class="g-Nav">

    <a
      href="/"
      class="
        g-Nav__Link
        {% if header == "Payments" %} g-Nav__Link--Current {% endif %}
      "
    >
      Paiements
    </a>

    <a
      href="/incomes"
      class="
        g-Nav__Link
        {% if header == "Incomes" %} g-Nav__Link--Current {% endif %}
      "
    >
      Revenus
    </a>

    <a
      href="/categories"
      class="
        g-Nav__Link
        {% if header == "Categories" %} g-Nav__Link--Current {% endif %}
      "
    >
      Catégories
    </a>

    <a
      href="/balance"
      class="
        g-Nav__Link
        {% if header == "Balance" %} g-Nav__Link--Current {% endif %}
      "
    >
      Équilibre
    </a>

    <a
      href="/statistics"
      class="
        g-Nav__Link
        {% if header == "Statistics" %} g-Nav__Link--Current {% endif %}
      "
    >
      Statistiques
    </a>

  </nav>
{% endif %}

<main class="g-Main">
  {% block main %}{% endblock main %}
</main>

<script src="{{ assets | get(key="main.js") }}">
</script>