Last active
August 29, 2015 14:00
-
-
Save kirkonrails/11218354 to your computer and use it in GitHub Desktop.
PropertyPublisher - Application Layout
This file contains 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>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