added an example to be able to easily run the unittests
[django-cas-provider.git] / cas_provider_examples / simple / templates / base.html
diff --git a/cas_provider_examples/simple/templates/base.html b/cas_provider_examples/simple/templates/base.html
new file mode 100644 (file)
index 0000000..6bd902c
--- /dev/null
@@ -0,0 +1,13 @@
+<!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" xml:lang="en" lang="en">
+<head>
+    <title>{% block title %}{% endblock %}</title>
+</head>
+<body>
+    <div id="content">
+        {% block content %}{% endblock %}
+    </div>
+</body>
+
+</html>
\ No newline at end of file