Modified: roller/trunk/app/src/main/webapp/themes/gaurav/search.vm
URL: 
http://svn.apache.org/viewvc/roller/trunk/app/src/main/webapp/themes/gaurav/search.vm?rev=1614802&r1=1614801&r2=1614802&view=diff
==============================================================================
--- roller/trunk/app/src/main/webapp/themes/gaurav/search.vm (original)
+++ roller/trunk/app/src/main/webapp/themes/gaurav/search.vm Thu Jul 31 
02:24:42 2014
@@ -1,21 +1,21 @@
 <!DOCTYPE html>
 <html lang="en">
-<!-- XFN friendly -->
-<head profile="http://gmpg.org/xfn/11";>
+<head>
     <meta charset="utf-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
        #includeTemplate($model.weblog "standard_head")
        <title>$model.weblog.name: Search Results for '$model.term'</title>
        #if ($model.hits > 0)
-               <style type="text/css">
+               <style>
                span.searchword { background-color:yellow; }
                </style>
-               <script type="text/javascript" >
+               <script>
                        //<![CDATA[
                                searchhi_config = {ignore_site : 
'$url.absoluteSite'};
                        //]]>
                </script>
                <script type="application/x-javascript" 
src="$url.resource('js/searchhi.js')"></script>
-               <script type="text/javascript" >
+               <script>
                        //<![CDATA[
                        function loadSearchHighlight() {
                                
searchhi.highlightWord(document.getElementById("search_results"), 
'$model.term');
@@ -23,7 +23,7 @@
                        //]]>
                </script>
        #end
-       <link rel="stylesheet" type="text/css" href='$url.page("custom.css")' />
+       <link rel="stylesheet" href='$url.page("custom.css")' />
 </head>
 <body onload="loadSearchHighlight()">
 

Modified: roller/trunk/app/src/main/webapp/themes/gaurav/std_footer.vm
URL: 
http://svn.apache.org/viewvc/roller/trunk/app/src/main/webapp/themes/gaurav/std_footer.vm?rev=1614802&r1=1614801&r2=1614802&view=diff
==============================================================================
--- roller/trunk/app/src/main/webapp/themes/gaurav/std_footer.vm (original)
+++ roller/trunk/app/src/main/webapp/themes/gaurav/std_footer.vm Thu Jul 31 
02:24:42 2014
@@ -12,6 +12,6 @@
     </div>
 </div>
 <!-- Placed at the end of the document so the pages load faster -->
-<script type="text/javascript" src="$url.resource('js/jquery.js')"></script>
+<script src="$url.resource('js/jquery.js')"></script>
 <script tye="text/javascript" src="$url.resource('js/bootstrap.js')"></script>
 

Modified: roller/trunk/app/src/main/webapp/themes/gaurav/std_head.vm
URL: 
http://svn.apache.org/viewvc/roller/trunk/app/src/main/webapp/themes/gaurav/std_head.vm?rev=1614802&r1=1614801&r2=1614802&view=diff
==============================================================================
--- roller/trunk/app/src/main/webapp/themes/gaurav/std_head.vm (original)
+++ roller/trunk/app/src/main/webapp/themes/gaurav/std_head.vm Thu Jul 31 
02:24:42 2014
@@ -6,6 +6,6 @@
 #end
 
 <!-- Bootstrap core CSS -->
-<link rel="stylesheet" type="text/css" 
href="$url.resource('css/bootstrap.css')" >
-<link rel="stylesheet" type="text/css" href="$url.resource('css/style.css')" />
-<link rel="stylesheet" type="text/css" 
href="$url.resource('css/font-awesome.min.css')" />
+<link rel="stylesheet" href="$url.resource('css/bootstrap.css')" >
+<link rel="stylesheet" href="$url.resource('css/style.css')" />
+<link rel="stylesheet" href="$url.resource('css/font-awesome.min.css')" />

Modified: roller/trunk/app/src/main/webapp/themes/gaurav/std_header.vm
URL: 
http://svn.apache.org/viewvc/roller/trunk/app/src/main/webapp/themes/gaurav/std_header.vm?rev=1614802&r1=1614801&r2=1614802&view=diff
==============================================================================
--- roller/trunk/app/src/main/webapp/themes/gaurav/std_header.vm (original)
+++ roller/trunk/app/src/main/webapp/themes/gaurav/std_header.vm Thu Jul 31 
02:24:42 2014
@@ -79,7 +79,7 @@
                                        <form id="searchForm" method="get" 
action="$url.search" class="form-inline" onsubmit="return validateSearch(this)">
                                                <input type="text" 
class="form-control input-sm" id="q" name="q" maxlength="255" 
placeholder="Search..." value="">                         <button type="submit" 
id="search-btn" class="btn"><i class="icon-search"></i></button>
                                        </form>
-                                       <script type="text/javascript">
+                                       <script>
                                        function validateSearch(form) {
                                            if (form.q.value == "") {
                                                
alert("$text.get("macro.weblog.searchalert")");

Modified: roller/trunk/app/src/main/webapp/themes/gaurav/tags_index.vm
URL: 
http://svn.apache.org/viewvc/roller/trunk/app/src/main/webapp/themes/gaurav/tags_index.vm?rev=1614802&r1=1614801&r2=1614802&view=diff
==============================================================================
--- roller/trunk/app/src/main/webapp/themes/gaurav/tags_index.vm (original)
+++ roller/trunk/app/src/main/webapp/themes/gaurav/tags_index.vm Thu Jul 31 
02:24:42 2014
@@ -1,10 +1,10 @@
 <!DOCTYPE html>
 <html lang="en">
-<!-- XFN friendly -->
-<head profile="http://gmpg.org/xfn/11";>
-    <meta charset="utf-8">
-    #includeTemplate($model.weblog "standard_head")
-    <title>$model.weblog.name: $model.weblog.description</title>
+<head>
+  <meta charset="utf-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  #includeTemplate($model.weblog "standard_head")
+  <title>$model.weblog.name: $model.weblog.description</title>
 </head>
 <body>
 

Modified: roller/trunk/app/src/main/webapp/themes/gaurav/weblog.vm
URL: 
http://svn.apache.org/viewvc/roller/trunk/app/src/main/webapp/themes/gaurav/weblog.vm?rev=1614802&r1=1614801&r2=1614802&view=diff
==============================================================================
--- roller/trunk/app/src/main/webapp/themes/gaurav/weblog.vm (original)
+++ roller/trunk/app/src/main/webapp/themes/gaurav/weblog.vm Thu Jul 31 
02:24:42 2014
@@ -1,11 +1,10 @@
 <!DOCTYPE html>
 <html lang="en">
-<!-- XFN friendly -->
-<head profile="http://gmpg.org/xfn/11";>
+<head>
        #includeTemplate($model.weblog "standard_head")
        <title>$model.weblog.name: $model.weblog.description</title>
        #showAutodiscoveryLinks($model.weblog)
-       <link rel="stylesheet" type="text/css" href='$url.page("custom.css")' />
+       <link rel="stylesheet" href='$url.page("custom.css")' />
 </head>
 <body>
 
@@ -82,4 +81,3 @@
        
 </body>
 </html>
-


Reply via email to