40 lines
825 B
HTML
40 lines
825 B
HTML
{% load comments %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="/static/css/front.css" />
|
|
<script type="text/javascript" src="/static/js/jquery.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="wrapper">
|
|
<div id="header">
|
|
Edgware Road
|
|
</div>
|
|
|
|
<div id="topTabs">
|
|
<div class="topTab">
|
|
<a href="/about/" class="topLink">About</a>
|
|
</div>
|
|
<div class="topTab">
|
|
<a href="/contact" class="topLink">Contact</a>
|
|
</div>
|
|
</div>
|
|
<div id="mainBody">
|
|
|
|
</div>
|
|
<div id="comments">
|
|
<form action="{% comment_form_target %}" method="POST">
|
|
<input type="hidden" name="next" value="{% "/" %}" />
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|