Files
snikket-web-portal/snikket_web/templates/app.html
Jonas Schäfer e985fe9c61 Design foundations
- Create a colour palette
- Create a sizing schema for paddings and fonts
- Implement basic form controls
- Create a theme demo page
- Apply the theme to the existing pages.

Still TODO is the final font selection.
2020-03-05 18:43:52 +01:00

20 lines
621 B
HTML

{% extends "base.html" %}
{% block head_lead %}
<title>Snikket Web Portal</title>
{% endblock %}
{% block style %}
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/app.css') }}">
{{ super() }}
{% endblock %}
{% block body %}
<div id="topbar">
<header><a href="{{ url_for('user.index') }}"><span>{{ config["SNIKKET_DOMAIN"] }}</span></a></header>
<div class="filler"></div>
<nav class="usermenu">{{ user_info.username }}</nav>
</div>
<main>{% block content %}{% endblock %}</main>
<footer>
<ul><li>A <a href="{{ url_for('about') }}">Snikket</a> server</li></ul>
</footer>
{% endblock %}