You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k4ever/k4ever/main/templates/base.html

28 lines
740 B

<!-- Please Intert Doctype. Or Don't. I don't care. -->
<html>
<head>
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/style.css" />
<title>Cashboxes are forever...</title>
</head>
<body>
<div class="title">
Its Alive - and here could be a logo. Wouldn't that be nice?
{% if user.is_authenticated %}
Logged in as {{ user }}, balance {{ user.get_profile.balance }} EUR
{% endif %}
</div>
<div class="navigation">
<div class="left">
{% if user.is_authenticated %}
{% include "main/navigation-login.html" %}
{% else %}
{% include "main/navigation.html" %}
{% endif %}
</div>
</div>
<div class="content">
{% block "content" %}{% endblock %}
</div>
</body>
</html>