diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-02-01 19:10:54 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-02-01 19:10:54 +0200 |
| commit | b29003fa36006ea274f9a9794054e044fd170d22 (patch) | |
| tree | 2060bf7a071748ba94ab2c3a652b2442c662b0db | |
| parent | e3f3cd1d1974444af3d76436cd971f85127e8ba0 (diff) | |
base template meta header
| -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> |
