diff options
Diffstat (limited to 'template/base.html')
-rw-r--r-- | template/base.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/template/base.html b/template/base.html new file mode 100644 index 0000000..d10402c --- /dev/null +++ b/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 %}Tagging Exploration{% endblock %}</title> +</head> + +<body> + <div id="sidebar"> + {% block sidebar %}{% endblock %} + </div> + + <div id="content"> + {% block content %}{% endblock %} + {% block main_content %}{% endblock %} + </div> +</body> +</html> |