Further template modifications

This commit is contained in:
2010-03-09 23:59:26 +00:00
parent 1b74e8f272
commit a6cbb2744b
7 changed files with 56 additions and 7 deletions

View File

@@ -3,6 +3,7 @@
<head>
<title></title>
<link rel="stylesheet" href="/static/css/style.css" type="text/css" media="screen">
{% block HeadTag %}{% endblock %}
</head>
<body>
<div id="container">
@@ -14,7 +15,12 @@
<div id="navigation">
<ul>
<li><a href="/">Home</a></li>
{% if request.user %}
<li><a href="/profile">Profile</a></li>
<li><a href="/logout">Logout</a></li>
{% else %}
<li><a href="/login">Login</a></li>
{% endif %}
</ul>
</div>
<div id="content">