diff options
| -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 |
