added an example to be able to easily run the unittests
[django-cas-provider.git] / cas_provider_examples / simple / templates / base.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 <head>
5     <title>{% block title %}{% endblock %}</title>
6 </head>
7 <body>
8     <div id="content">
9         {% block content %}{% endblock %}
10     </div>
11 </body>
12
13 </html>