You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2011/05/04 16:09:35 UTC

[lucy-commits] svn commit: r1099454 - /incubator/lucy/site/trunk/templates/basic.html

Author: marvin
Date: Wed May  4 14:09:35 2011
New Revision: 1099454

URL: http://svn.apache.org/viewvc?rev=1099454&view=rev
Log:
Content-type meta tag comes first.

Make sure that the Content-Type meta tag specifiying a charset of UTF-8 is
located at the top of the <head> element.

Modified:
    incubator/lucy/site/trunk/templates/basic.html

Modified: incubator/lucy/site/trunk/templates/basic.html
URL: http://svn.apache.org/viewvc/incubator/lucy/site/trunk/templates/basic.html?rev=1099454&r1=1099453&r2=1099454&view=diff
==============================================================================
--- incubator/lucy/site/trunk/templates/basic.html (original)
+++ incubator/lucy/site/trunk/templates/basic.html Wed May  4 14:09:35 2011
@@ -1,8 +1,8 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html lang="en">
   <head>
-    <title>{% block title %}{{ headers.title }}{% endblock %}</title>
     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
+    <title>{% block title %}{{ headers.title }}{% endblock %}</title>
     <link rel="stylesheet" type="text/css" media="screen" href="css/lucy.css">
   </head>