middleman/middleman-cli/lib/middleman-templates/default/source/layouts/layout.erb

20 lines
509 B
Plaintext
Raw Normal View History

2011-12-24 21:27:03 +01:00
<!doctype html>
2011-12-23 19:55:25 +01:00
<html>
<head>
<meta charset="utf-8">
2011-12-23 19:55:25 +01:00
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
2011-12-23 19:55:25 +01:00
<!-- Use title if it's in the page YAML frontmatter -->
<title><%= current_page.data.title || "The Middleman" %></title>
<%= stylesheet_link_tag "normalize", "all" %>
2011-12-23 19:55:25 +01:00
<%= javascript_include_tag "all" %>
</head>
2011-12-23 19:55:25 +01:00
<body class="<%= page_classes %>">
<%= yield %>
</body>
</html>