fredericmarcel
fredericmarcel

Reputation: 73

Bootstrap navbar does not show in rails

I have imported bootstrap in ruby on rails And I have copied the navbar code in the bootstrap website. Yet, the bootstrap toolbar does not show in the ruby on rails page with <% render 'layouts/navigation' %> I a quite new in stackoverflow and with ruby on rails and not a professional web developer. So please forgive me if my question is not adequately expressed.

Upvotes: 1

Views: 85

Answers (1)

Gaurav Gupta
Gaurav Gupta

Reputation: 1191

Change the line

<% render 'layouts/navigation' %>

to:

 <%= render 'layouts/navigation' %>

Upvotes: 3

Related Questions