diff options
author | Primal Pappachan | 2012-03-27 14:56:23 +0530 |
---|---|---|
committer | Primal Pappachan | 2012-03-27 14:56:23 +0530 |
commit | 2a0e009c856b0ad8a28b613fcfde8f6cd92dca02 (patch) | |
tree | 2049a4187697b989382e3af2b65125b13a102222 /choice_seeker/template/base.html | |
parent | 8eba4c72a81176ba160e3e93e214acf28b9f376f (diff) | |
download | aloha-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.html | 23 |
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> |