2011-12-24 21:27:03 +01:00
|
|
|
<!doctype html>
|
2011-12-23 19:55:25 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2014-05-11 04:37:48 +02:00
|
|
|
|
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">
|
2014-05-11 04:37:48 +02:00
|
|
|
|
2011-12-23 19:55:25 +01:00
|
|
|
<!-- Use title if it's in the page YAML frontmatter -->
|
2014-05-11 04:37:48 +02:00
|
|
|
<title><%= current_page.data.title || "The Middleman" %></title>
|
|
|
|
|
2012-01-02 23:42:01 +01:00
|
|
|
<%= stylesheet_link_tag "normalize", "all" %>
|
2011-12-23 19:55:25 +01:00
|
|
|
<%= javascript_include_tag "all" %>
|
|
|
|
</head>
|
2014-05-11 04:37:48 +02:00
|
|
|
|
2011-12-23 19:55:25 +01:00
|
|
|
<body class="<%= page_classes %>">
|
|
|
|
<%= yield %>
|
|
|
|
</body>
|
2014-05-11 04:37:48 +02:00
|
|
|
</html>
|