diff options
| -rw-r--r-- | res/templates/base.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/res/templates/base.html b/res/templates/base.html index 6a030858..75b4ea36 100644 --- a/res/templates/base.html +++ b/res/templates/base.html @@ -1,11 +1,14 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> +<!DOCTYPE html> <html lang="en"> <html 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"> - <title>{% block title %}{% endblock %} - My Webpage</title> {% endblock %} </head> <body> |
