Fix silly ypot in title.
[eatslugs.git] / templates / base.html
1 <?xml version="1.0" encoding="utf-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
4     <head>
5         <title>{% block title %}{% if title %}{{ title }}{% else %}EATSLUGS{% endif %}{% endblock %}</title>
6         <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}style/main.css" />
7         {% block extrahead %}{% endblock %}
8     </head>
9     <body>
10         <div id="page">
11             <div id="websitetitle">
12                 <img src="{{ MEDIA_URL }}img/sandwich.png" alt="A Yummy Sandwich" class="logoleft" /><img src="{{ MEDIA_URL }}img/slug.png" alt="A Slug... no, really." class="logoright" /><p class="title">East Anglian Toasty, Sandwich and Luncheon Users Group Symposium</p>
13             </div>
14             <div id="content">
15                 {% block content %}
16                 {% endblock %}
17             </div>
18         </div>
19     </body>
20 </html>