edgware/edgware/templates/main_base.html

67 lines
1.8 KiB
HTML
Raw Normal View History

2011-02-11 04:34:26 +05:30
{% extends 'base.html' %}
{% block head %}
2011-02-12 06:19:01 +05:30
<link rel="stylesheet" href="/static/css/fonts.css" />
2011-02-11 04:34:26 +05:30
<link rel="stylesheet" href="/static/css/main.css" />
2011-02-12 06:19:01 +05:30
2011-02-11 04:34:26 +05:30
<script type="text/javascript" src="/static/js/main.js"></script>
<title>EdgwareRoad: {% block title %} {% endblock %}</title>
{% block extra_head %}
{% endblock %}
{% endblock %}
{% block body %}
<div id="wrapper">
<div id="header">
<div id="mainTitle">
<h1><a href="/" title="Go Home">The Edgware Road Project</a></h1>
</div>
<div id="pageTitle">
<h2>{% block pageTitle %} {% endblock %}</h2>
</div>
<div id="intro">
<p id="introPara1">
2011-05-07 16:17:55 +05:30
Edgware Road.org is a platform for publishing and archiving possible studies about the Edgware Road.
2011-02-11 04:34:26 +05:30
</p>
<p>
2011-05-07 16:17:55 +05:30
It was created by artists C.A.M.P. during their residency at the Serpentine Gallery.
2011-02-11 04:34:26 +05:30
</p>
</div>
</div>
<div id="content">
{% block content %} {% endblock %}
</div>
<div id="footer">
<ul id="nav">
<li>
<a href="archive" title="The Edgwareroad.org Archive">Archive</a>
</li>
<li>
<a href="publish" title="Publish!">Publish</a>
</li>
2011-05-07 16:01:16 +05:30
<li>
<a href="browse" title="Browse Publications">Browse</a>
</li>
2011-02-11 04:34:26 +05:30
<li>
<a href="contact" title="Contact Us">About/Contact</a>
</li>
<li>
<a href="faq" title="Frequently Asked Questions">FAQ</a>
</li>
<li> &nbsp;</li>
<li>
<a href="account" title="Login / Sign Up">Login/Sign Up</a>
</li>
<li>
<a href="help" title="Help!">Help</a>
</li>
</ul>
</div>
<div id="logo">
2011-03-31 19:05:05 +05:30
<a href="" title="Serpentine Gallery Webpage">Serpentine <br />Gallery</a>
2011-02-11 04:34:26 +05:30
</div>
</div>
{% endblock %}