Files
test-auth/templates/base.html
2010-03-09 23:47:21 +00:00

31 lines
575 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
<title></title>
<link rel="stylesheet" href="/static/css/style.css" type="text/css" media="screen">
</head>
<body>
<div id="container">
<div id="header">
<h1>
Dreddit Auth Gateway - {% block title %}{% endblock %}
</h1>
</div>
<div id="navigation">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/profile">Profile</a></li>
</ul>
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
<div id="footer">
&nbsp;
</div>
</div>
</body>
</html>