The project is in a healthy, maintained state
Navigation generator and editor
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

Navigation

Generates and edits navigation menus.

Installation

Install the gem as usual

gem "katalyst-navigation"

Mount the engine in your routes.rb file:

mount Katalyst::Navigation::Engine, at: "navigation"

Add the Gem's migrations to your application:

rake katalyst_navigation:install:migrations

Add the Gem's javascript and CSS to your build pipeline. This assumes that you're using rails-dartsass and importmaps to manage your assets.

// app/javascript/controllers/application.js
import { application } from "controllers/application";
import navigation from "@katalyst/navigation";
application.load(navigation);
@use "katalyst/navigation";

Usage

See the dummy app for examples.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/katalyst/navigation.

License

The gem is available as open source under the terms of the MIT License.