Skip to content

Instantly share code, notes, and snippets.

@xdite
Created July 21, 2012 07:31
Show Gist options
  • Save xdite/3154972 to your computer and use it in GitHub Desktop.
Save xdite/3154972 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
<%= stylesheet_link_tag "application" %>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
<div class="container">
<div class="content">
<div class="row">
<div class="span8">
<%= yield %>
</div>
<div class="span4">
SIDEBAR
<%= yield (:sidebar) %>
</div>
</div>
<%# render :partial => "common/general_sidebar" %>
</div>
<footer class="footer">
<p class="copyright">Copyright 2012 © xdite. All Rights Resevered.</p>
</footer>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment