summaryrefslogtreecommitdiff
path: root/choice_seeker/template/base.html
diff options
context:
space:
mode:
authorPrimal Pappachan2012-03-27 14:56:23 +0530
committerPrimal Pappachan2012-03-27 14:56:23 +0530
commit2a0e009c856b0ad8a28b613fcfde8f6cd92dca02 (patch)
tree2049a4187697b989382e3af2b65125b13a102222 /choice_seeker/template/base.html
parent8eba4c72a81176ba160e3e93e214acf28b9f376f (diff)
downloadaloha-2a0e009c856b0ad8a28b613fcfde8f6cd92dca02.tar.gz
aloha-2a0e009c856b0ad8a28b613fcfde8f6cd92dca02.tar.bz2
aloha-2a0e009c856b0ad8a28b613fcfde8f6cd92dca02.zip
Added buildout files
Diffstat (limited to 'choice_seeker/template/base.html')
-rw-r--r--choice_seeker/template/base.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/choice_seeker/template/base.html b/choice_seeker/template/base.html
new file mode 100644
index 0000000..cd937ba
--- /dev/null
+++ b/choice_seeker/template/base.html
@@ -0,0 +1,23 @@
+<!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>
+ <style>
+ input.required, error {
+ border: 2px solid red;
+ }
+ </style>
+ <title>{% block title %} {% endblock %}</title>
+</head>
+
+<body>
+ <div id="sidebar">
+ {% block sidebar %}{% endblock %}
+ </div>
+
+ <div id="content">
+ {% block content %}{% endblock %}
+ {% block main_content %}{% endblock %}
+ </div>
+</body>
+</html>