diff options
| author | Alon Levy <alon@pobox.com> | 2015-05-27 09:16:09 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-05-27 09:16:09 +0300 |
| commit | b4e625edcd2f81ae2a57d158d3b6920ca5f46818 (patch) | |
| tree | 3ce90ebad86d9460c4ccfe299425238d36679389 /res/local/template.d/base.html | |
| parent | 9a0c9324b712465048d8e1e07c1fa703877e65ba (diff) | |
remove all custom files, will be updated externally
Diffstat (limited to 'res/local/template.d/base.html')
| -rw-r--r-- | res/local/template.d/base.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/res/local/template.d/base.html b/res/local/template.d/base.html new file mode 100644 index 00000000..135189af --- /dev/null +++ b/res/local/template.d/base.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html lang="en" xmlns="http://www.w3.org/1999/xhtml"> +<head> + {% block head %} + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + + <title>{% block title %}{% endblock %}</title> + <link rel="shortcut icon" href="/static/img/favicon2.ico" /> + + <link href="/static/css/style.css" rel="stylesheet" type="text/css"> + <link href="{{ fragment_d_path }}/css/style.css" rel="stylesheet" type="text/css"> + + {% endblock %} +</head> +<body> + <div id="content">{% block content %}{% endblock %}</div> + <div id="footer">{% block footer %}{% endblock %}</div> + <div id="devtools" style="display:none;">{% block devtools %}{% endblock %}</div> +</body> +</html> |
