summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2015-02-01 16:30:41 +0200
committerLV-426 <lv-426@taproot.org.il>2015-02-01 16:30:41 +0200
commit999508ce46f1a2b86e52c05a8cd0307316b4a680 (patch)
treeeec896d732ce579a16f8fe7e31e3177ee20e41dd
parentf13018655eb1288806dab82e8c3522a5fc3498b0 (diff)
rz jinja base template
-rw-r--r--res/templates/base.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/res/templates/base.html b/res/templates/base.html
new file mode 100644
index 00000000..6a030858
--- /dev/null
+++ b/res/templates/base.html
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
+<html lang="en">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ {% block head %}
+ <link rel="shortcut icon" href="/static/img/favicon2.ico" />
+ <link href="/static/css/style.css" rel="stylesheet" type="text/css">
+ <title>{% block title %}{% endblock %} - My Webpage</title>
+ {% endblock %}
+</head>
+<body>
+ <div id="content">{% block content %}{% endblock %}</div>
+ <div id="footer">{% block footer %}{% endblock %}</div>
+</body> \ No newline at end of file