2012-08-28 21:06:20 +02:00
|
|
|
<!DOCTYPE html>
|
2012-08-28 18:44:51 +02:00
|
|
|
{% autoescape off %}
|
2012-08-28 21:06:20 +02:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>Zephyr</title>
|
2012-08-28 21:06:35 +02:00
|
|
|
<link href="/static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
2012-08-28 21:06:20 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2012-08-28 21:06:35 +02:00
|
|
|
<script src="/static/bootstrap/js/bootstrap.min.js"></script>
|
2012-08-28 21:06:20 +02:00
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
{% if not user.is_authenticated %}<a href="/accounts/login/?next=/">login</a> | <a
|
|
|
|
href="/accounts/register/">register</a>{% endif %}
|
|
|
|
|
|
|
|
{% if user.is_authenticated %}<a href="/accounts/logout/?next=/">logout</a>{% endif %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
2012-08-28 21:06:20 +02:00
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
{% endautoescape %}
|