mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
18 lines
313 B
Text
18 lines
313 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<%= stylesheet_link_tag "site" %>
|
|
<%= javascript_include_tag "application" %>
|
|
<%= yield_content :head %>
|
|
</head>
|
|
|
|
<body class="<%= page_classes %>">
|
|
|
|
<div id="main" role="main">
|
|
<%= yield %>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|