The navigation bar is displaying correctly on my local server:
Link to Image
However, after deploying it to Heroku, the navigation bar appears different:
Link to Image
I am unsure of what is causing this issue or if there is a specific command that needs to be entered for Heroku to reflect the correct navigation bar changes.
The logs are showing the following error:
2015-03-23T01:51:38.865239+00:00 app[web.1]: ActionController::RoutingError (No route matches [GET] "/assets/glyphicons-halflings-5737efb39ea936f62b6811688c4bb9f6.png")
The code for the header section is as follows:
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="#">Pinteresting</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><%= link_to "Home", root_path %></li>
<li><%= link_to "About", about_path %></li>
</ul>
</div><!-- /.navbar-collapse -->