diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-02-01 16:30:41 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-02-01 16:30:41 +0200 |
| commit | 999508ce46f1a2b86e52c05a8cd0307316b4a680 (patch) | |
| tree | eec896d732ce579a16f8fe7e31e3177ee20e41dd /res | |
| parent | f13018655eb1288806dab82e8c3522a5fc3498b0 (diff) | |
rz jinja base template
Diffstat (limited to 'res')
| -rw-r--r-- | res/templates/base.html | 14 |
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 |
