Added a head block to the simple theme. The html lang attribute of the simple theme now depends of the DEFAULT_LANG variable.

This commit is contained in:
Skami18 2011-07-21 19:10:38 +02:00
commit 55bc684380

View file

@ -1,8 +1,10 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="{{ DEFAULT_LANG }}">
<head> <head>
<title>{% block title %}{{ SITENAME }}{%endblock%}</title> {% block head %}
<title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
<meta charset="utf-8" /> <meta charset="utf-8" />
{% endblock head %}
</head> </head>
<body id="index" class="home"> <body id="index" class="home">