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