Skip to content

Instantly share code, notes, and snippets.

@davidott
Created August 25, 2012 20:26
Show Gist options
  • Save davidott/3470642 to your computer and use it in GitHub Desktop.
Save davidott/3470642 to your computer and use it in GitHub Desktop.
application layout
<!DOCTYPE html>
<html>
<head>
<title>Solar Sound Inc | Entertainment </title>
<%= stylesheet_link_tag "application" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
<style type="text/css">
body {
padding-top: 60px;
}
</style>
</head>
<body>
<div class="topbar">
<div class="topbar-inner">
<div class="container-fluid">
<a class="brand" #href="#">Solar Sound Inc</a>
<ul class="nav">
<li class="dropdown"><a href="http://localhost:3000/">Home</a></li>
<li class="dropdown"><a href="http://localhost:3000/main/about_us">About Us</a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
...
</ul>
</li>
<li class="dropdown"><a href="http://localhost:3000/main/packages">Packages</a></li>
<li class="dropdown"><a href="http://localhost:3000/">Gallery</a></li>
<li class="dropdown"><a href="http://localhost:3000/main/testimonials">Testimonials</a></li>
<li class="dropdown"><a href="http://blog.solarsoundinc.com/">Blog</a></li>
<ul/>
</div>
<ul class="nav">
<!--<li><a href="#about">About</a></li>-->
<!--<li><a href="#contact">Contact</a></li>-->
</ul>
<!--<p class="pull-right">Logged in as <a href="#">username</a></p>-->
</div>
</div>
</div>
<!--<div class="container-fluid">-->
<!--<div class="sidebar">-->
<!--<div class="well">-->
<!--<h5>Some example</h5>-->
<!--<ul>-->
<!--<li><a href="http://localhost:3000/posts">Posts</a></li>-->
<!--&lt;!&ndash;<li><a href="#">Link</a></li>&ndash;&gt;-->
<!--&lt;!&ndash;<li><a href="#">Link</a></li>&ndash;&gt;-->
<!--&lt;!&ndash;<li><a href="#">Link</a></li>&ndash;&gt;-->
<!--</ul>-->
<!--</div>-->
<!--</div>-->
<div class="content">
<% if flash[:notice] %>
<div class="flash notice">
<%= flash[:notice] %>
</div>
<% end %>
<%= yield %>
<footer>
<center><p>&copy; Solar Sound 2012</p></center>
</footer>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment