vanilla middleman (2) template
This commit is contained in:
5
source/index.html.erb
Normal file
5
source/index.html.erb
Normal file
@@ -0,0 +1,5 @@
|
||||
<% content_for :head do %>
|
||||
<title>The Middleman!</title>
|
||||
<% end%>
|
||||
|
||||
<h1>The Middleman is watching.</h1>
|
||||
19
source/layout.erb
Normal file
19
source/layout.erb
Normal 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>
|
||||
0
source/stylesheets/site.css.scss
Normal file
0
source/stylesheets/site.css.scss
Normal file
Reference in New Issue
Block a user