你好,我正在尝试使用这个 gem来生成响应式 nar_bar。它对我来说很好用:
<%= nav_bar fixed: :top , brand: "Some_brand" , :responsive => true do %>
<%= menu_group pull: :right do %>
<%= drop_down "Services" do %>
<%= menu_item "a",a_path %>
<%= menu_item "b",b_path %>
<%= drop_down_divider %>
<%= menu_item "c",c_path %>
<% end %>
<%= menu_item "About",about_path %>
<%= menu_item "Portfolio",portfolio_path %>
<% end %>
现在我想在品牌中使用 logo.jpg 图像而不是“某些品牌”。像这样的东西:
<%= nav_bar fixed: :top , brand: :image_tag('logo.jpg') , :responsive => true do %>
我不知道辅助方法是否适用于 image_tag。你能帮助我吗?