Created
April 13, 2018 04:40
-
-
Save pawelztef/ac088254d92245b7245726bd2451bd78 to your computer and use it in GitHub Desktop.
Rails and refineryCMS with Bootstrap Navbar
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
| <nav class="navbar navbar-default" role="navigation"> | |
| <div class="container-fluid"> | |
| <div class="navbar-header"> | |
| <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#example_1"> | |
| <span class="sr-only">Toggle navigation</span> | |
| <span class="icon-bar"></span> | |
| <span class="icon-bar"></span> | |
| <span class="icon-bar"></span> | |
| </button> | |
| <a class="navbar-brand" href="#"><%=Refinery::Core::site_name %></a> | |
| </div> | |
| <div class="collapse navbar-collapse" id="example_1"> | |
| <%= Refinery::Pages::MenuPresenter.new(refinery_menu_pages, self).to_html %> | |
| </div> | |
| </div> | |
| </nav> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment