Created
July 21, 2012 07:31
-
-
Save xdite/3154972 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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