summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNishanth Amuluru2011-01-07 09:38:48 +0530
committerNishanth Amuluru2011-01-07 09:38:48 +0530
commit304198a85ad3941219a8e72c6b3efc1f3f6c1fcc (patch)
treea98f19f1bc4a4da56181b0753899bc87b41733f8
parent646f5fdc3b120ab6475f584c0f5aa7b7c2ba8f52 (diff)
downloadpytask-304198a85ad3941219a8e72c6b3efc1f3f6c1fcc.tar.gz
pytask-304198a85ad3941219a8e72c6b3efc1f3f6c1fcc.tar.bz2
pytask-304198a85ad3941219a8e72c6b3efc1f3f6c1fcc.zip
Added base.htm;
-rw-r--r--templates/base.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..65b8e6d
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,12 @@
+<html>
+<head>
+ <title>{% block title %}PyTasks{% endblock %}</title>
+ {% block js_script %} {% endblock %}
+</head>
+
+<body>
+{% block content %}
+<h2><a href="/">PyTasks</a></h2>
+{% endblock %}
+</body>
+</html>