Make base.html more valid

(imported from commit 07ae94e9678deca71b2b6933df4c4503cda96be5)
This commit is contained in:
Keegan McAllister
2012-08-28 15:06:20 -04:00
parent 3e5b9e93c5
commit 316b32ef31

View File

@@ -1,4 +1,13 @@
<!DOCTYPE html>
{% autoescape off %}
<html>
<head>
<title>Zephyr</title>
</head>
<body>
{% if not user.is_authenticated %}<a href="/accounts/login/?next=/">login</a> | <a
href="/accounts/register/">register</a>{% endif %}
@@ -6,4 +15,9 @@
{% block content %}
{% endblock %}
</body>
</html>
{% endautoescape %}