kers/templates/base.html
2020-08-04 18:45:48 +02:00

72 lines
1.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<title>{% block title %}{% endblock %} KeRS</title>
<link rel="stylesheet" type="text/css" href="{% static 'main.css' %}"/>
<link rel="stylesheet" type="text/css" href="{% static 'dracula.css' %}"/>
{% block styles %}{% endblock %}
</head>
<body>
<header>
<h1><a href="/"><span class="align">Zeus WPI Kelder&shy;registratie&shy;systeem</span></a></h1>
<nav>
<div class="align">
<ul class="alignLeft">
<li>
<a href="{% url 'events:index' %}">
Home</a>
</li>
<li>
<a href="{% url 'users:profile' %}">
Profiel
</a>
</li>
</ul>
<ul class="alignRight">
{% if user.is_authenticated %}
<li class="deemphasized">
<span>
Hallo, {{ user.username }}
</span>
</li>
{% if user.is_staff or user.is_superuser %}
<li>
<a href="{% url 'admin:index' %}">
Admininterface
</a>
</li>
{% endif %}
<li>
<a href="{% url 'users:logout' %}">
Afmelden
</a>
</li>
{% else %}
<li>
<a href="{% url 'oauth:login' %}">
Inloggen
</a>
</li>
{% endif %}
</ul>
<div style="clear: both;"></div>
</div>
</nav>
</header>
<main class="align">
{% block content %}{% endblock %}
</main>
<footer class="align">
<a href="https://git.zeus.gent/bestuur/drive/blob/master/activiteiten/2020-2021/kelderregels.md">Regels in de kelder</a> |
<a href="https://zeus.gent/about/privacy/#kers">Privacybeleid</a> |
<a href="https://git.zeus.gent/bestuur/kers">Broncode</a> |
Ontwikkeld door <a href="https://zeus.gent/">Zeus WPI</a>
</footer>
</body>
</html>