Skip to content

Instantly share code, notes, and snippets.

@kirkonrails
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kirkonrails/11218354 to your computer and use it in GitHub Desktop.
Save kirkonrails/11218354 to your computer and use it in GitHub Desktop.
PropertyPublisher - Application Layout
<!DOCTYPE html>
<html>
<head>
<title>PropertyWare</title>
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
<%= csrf_meta_tags %>
</head>
<body style='padding-top: 51px'>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="/">PropertyPublisher</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class='active'><%= link_to "Home", "/" %>
<li><%= link_to "How it Works", pages_how_it_works_path %>
<li><%= link_to "Pricing & Plans", pages_pricing_and_plans_path %>
<li><%= link_to "Signup ", "#" %>
</ul>
</div><!--/.navbar-collapse -->
</div>
</div>
<%= yield %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment