diff options
Diffstat (limited to 'res/domain-fragment.d/default/template.d/base.html')
| -rw-r--r-- | res/domain-fragment.d/default/template.d/base.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/res/domain-fragment.d/default/template.d/base.html b/res/domain-fragment.d/default/template.d/base.html new file mode 100644 index 00000000..7369984d --- /dev/null +++ b/res/domain-fragment.d/default/template.d/base.html @@ -0,0 +1,17 @@ +<!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"> + {% endblock %} +</head> +<body> + <div id="content">{% block content %}{% endblock %}</div> + <div id="footer">{% block footer %}{% endblock %}</div> +</body> +</html> |
