
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
simple-navigation-bootstrap
Advanced tools
This gem adds a renderer for Simple Navigation to output markup compatible with Twitter Bootstrap.
For Rails >= 3, simply add this gem to your Gemfile:
gem 'simple-navigation-bootstrap'
and run
bundle install
Follow the configuration instructions on the Simple Navigation wiki for initial configuration.
To use the Bootstrap renderer, specify it in your view:
render_navigation :expand_all => true, :renderer => :bootstrap
And the minimal navigation config you need is:
SimpleNavigation::Configuration.run do |navigation|
navigation.items do |primary|
primary.dom_class = 'nav'
end
end
See below for a more complete example.
In addition to generating Bootstrap-comptible list markup, you may specify
an :icon attribute on your navigation items, either as an array
or string, containing Bootstrap icon classes, to add an icon to the item.
For items with sub-navigation, you may specify :split => true on an item to
enable a split dropdown. Split dropdowns allow using an url on the primary
navigation item, as well as having a dropdown containing sub-navigation. If
you plan on using this feature, in your application.css or equivalent you
must require the bootstrap_navbar_split_dropdowns stylesheet after
requiring Bootstrap.
For example:
/*
*= require bootstrap_and_overrides
*= require bootstrap_navbar_split_dropdowns
*/
You may also enable split navigation for all children by setting the split
attribute of the container to true (defaults to false).
If you wish to disable dropdown attributes for some reason (eg -you don't use the
JavaScript, or have custom handling), you may specify :dropdown => false on an
item, or set the dropdown attribute on the container to false (defaults to
true).
To create a navigation menu, you might do something like this:
SimpleNavigation::Configuration.run do |navigation|
navigation.items do |primary|
primary.item :music, 'Music', musics_path
primary.item :dvds, 'Dvds', dvds_path, :split => true do |dvds|
dvds.item :action, 'Action', dvds_action_path
dvds.item :drama, 'Drama', dvds_drama_path
end
primary.item :books, 'Books', :icon => ['icon-book', 'icon-white'] do |books|
books.item :fiction, 'Fiction', books_fiction_path
books.item :history, 'History', books_history_path
end
primary.dom_class = 'nav'
primary.dropdown = true
primary.split = false
end
end
Requires Bootstrap version >= 2.1.0
So far, only nav markup and dropdowns are supported, may also implement buttons and nav lists in the future. And tests, there are currently no tests.
FAQs
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.