12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title>PBP - {% block title %}{% endblock %}</title>
- <link href="{{MEDIA_URL}}css/almanac.css" rel="stylesheet" type="text/css" />
- {% block javascript %}{% endblock%}
- </head>
- <body>
- <div class="container_body">
- <div class="container_content">
- {% block content %}{% endblock %}
- {% block content_right %}{% endblock %}
- </div><!-- end content_container -->
- </div><!-- end container_right -->
- </div>
- </body>
- </html>
|