Browse code

Fixes whitespace, removed unnecessary closing '/' in HTML5

Frederic Hemberger authored on 21/09/2011 at 08:13:23
Showing 1 changed files
... ...
@@ -4,8 +4,8 @@
4 4
 <!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
5 5
 <head>
6 6
   <meta charset="utf-8">
7
-  <title>{% if page.title %}{{page.title}} - {% endif %}{{site.title}}</title>
8
-  <meta name="author" content="{{site.author}}">
7
+  <title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
8
+  <meta name="author" content="{{ site.author }}">
9 9
 
10 10
   {% capture description %}{% if page.description %}{{ page.description }}{% else %}{{ content | raw_content }}{% endif %}{% endcapture %}
11 11
   <meta name="description" content="{{ description | strip_newlines | strip_html | truncate:150 }}">
... ...
@@ -18,11 +18,11 @@
18 18
 
19 19
   {% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' }}{% endif %}{% endcapture %}
20 20
   <link rel="canonical" href="{{ canonical }}">
21
-  <link href="{{ root_url }}/favicon.png" rel="shortcut icon" />
21
+  <link href="{{ root_url }}/favicon.png" rel="icon">
22 22
   <link href="{{ root_url }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
23 23
   <script src="{{ root_url }}/javascripts/modernizr-2.0.js"></script>
24 24
   <script src="http://s3.amazonaws.com/ender-js/jeesh.min.js"></script>
25 25
   <script src="{{ root_url }}/javascripts/octopress.js" type="text/javascript"></script>
26
-  <link href="{{ site.subscribe_rss }}" rel="alternate" title="{{site.title}}" type="application/atom+xml"/>
26
+  <link href="{{ site.subscribe_rss }}" rel="alternate" title="{{site.title}}" type="application/atom+xml">
27 27
   {% include custom/head.html %}
28 28
 </head>