diff options
author | Michael Scherer <misc@mageia.org> | 2010-12-13 23:12:16 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2010-12-13 23:12:16 +0000 |
commit | 2886aa35c73bb42075f750c4df652cfea0768f2f (patch) | |
tree | ab31ed6188542b4f7bab613d0542850c13f8d923 /root/template/html | |
parent | d570eb526f410368b0ddcd1e9ff3b31319c1a957 (diff) | |
download | identity-2886aa35c73bb42075f750c4df652cfea0768f2f.tar identity-2886aa35c73bb42075f750c4df652cfea0768f2f.tar.gz identity-2886aa35c73bb42075f750c4df652cfea0768f2f.tar.bz2 identity-2886aa35c73bb42075f750c4df652cfea0768f2f.tar.xz identity-2886aa35c73bb42075f750c4df652cfea0768f2f.zip |
fix some styling and templating errors and html5 validation ( patch by Maarten Vanraes )
Diffstat (limited to 'root/template/html')
-rw-r--r-- | root/template/html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/root/template/html b/root/template/html index abac43a..21f9581 100644 --- a/root/template/html +++ b/root/template/html @@ -1,17 +1,17 @@ <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html> -<html lang="en" dir="ltr"> +<html xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr"> <head> <meta charset="utf-8" /> <title>[% template.title or site.title or c.config.apptitle %]</title> - <meta content="description" value="Mageia.org online user account panel" /> - <meta content="keywords" value="mageia, user, account, password" /> - <meta content="robots" value="index,nofollow" /> - <link rel="stylesheet" type="text/css" href="/static/style/yui/reset-fonts-grids.css"> - <link rel="stylesheet" type="text/css" href="/static/style/yui/base-min.css"> + <meta name="description" content="Mageia.org online user account panel" /> + <meta name="keywords" content="mageia, user, account, password" /> + <meta name="robots" content="index,nofollow" /> + <link rel="stylesheet" type="text/css" href="/static/style/yui/reset-fonts-grids.css" /> + <link rel="stylesheet" type="text/css" href="/static/style/yui/base-min.css" /> <link rel="stylesheet" type="text/css" href="/static/style/ttsite.css" /> </head> <body> [% content %] </body> -</html>
\ No newline at end of file +</html> |