1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00

Merge pull request #1504 from cllns/fix-whitespace

Remove spaces on empty lines in default layout.erb
This commit is contained in:
Thomas Reynolds 2015-04-26 09:44:31 -07:00
commit 56c7ef7905

View file

@ -2,18 +2,18 @@
<html> <html>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<!-- Always force latest IE rendering engine or request Chrome Frame --> <!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"> <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<!-- Use title if it's in the page YAML frontmatter --> <!-- Use title if it's in the page YAML frontmatter -->
<title><%= current_page.data.title || "The Middleman" %></title> <title><%= current_page.data.title || "The Middleman" %></title>
<%= stylesheet_link_tag "normalize", "all" %> <%= stylesheet_link_tag "normalize", "all" %>
<%= javascript_include_tag "all" %> <%= javascript_include_tag "all" %>
</head> </head>
<body class="<%= page_classes %>"> <body class="<%= page_classes %>">
<%= yield %> <%= yield %>
</body> </body>
</html> </html>