Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/hatta/templates/layout.html
diff options
context:
space:
mode:
authorRadomir Dopieralski <hatta-dev@sheep.art.pl>2010-11-10 21:01:48 (GMT)
committer Radomir Dopieralski <hatta-dev@sheep.art.pl>2010-11-10 21:01:48 (GMT)
commita5e1a7d9c86e5bd0e971d7c2c1228a95322f8021 (patch)
tree45c82f9b278b178d96ecb8f6cdfd8019a580d822 /hatta/templates/layout.html
parent9c493458130ff10a695a76c9534fc17b2c5d2fae (diff)
first version with templates
Diffstat (limited to 'hatta/templates/layout.html')
-rw-r--r--hatta/templates/layout.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/hatta/templates/layout.html b/hatta/templates/layout.html
new file mode 100644
index 0000000..cf30cc3
--- /dev/null
+++ b/hatta/templates/layout.html
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+"http://www.w3.org/TR/html4/strict.dtd">
+<html><head>
+<meta http-equiv="content-type" content="text/html;charset=utf-8">
+<title>{% block title %}{% endblock %}</title>
+{% block links %}{% endblock %}
+{% block meta %}{% endblock %}
+</head><body><div id="hatta-header">
+{% block header %}{% endblock %}
+</div><div id="hatta-content">
+{% block content %}{% endblock %}
+<div id="hatta-footer">
+{% block footer %}{% endblock %}
+</div></div>
+{% block scripts %}{% endblock %}
+</body></html>