switched middleman defaults from scss to sass and erb to haml

This commit is contained in:
zeke
2011-08-02 20:05:44 -07:00
parent fa6da2c31d
commit 2c61bbbf1c
3 changed files with 0 additions and 0 deletions

19
source/layout.haml Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<%= stylesheet_link_tag "site.css" %>
<%= yield_content :head %>
</head>
<body class="<%= page_classes %>">
<section id="main" role="main">
<%= yield %>
</section>
</body>
</html>