Archive

Posts Tagged ‘breadcrumbs’

Easy and flexible breadcrumbs for Rails « require ‘brain’

January 17th, 2010

Simple Example
01 class ApplicationController < ActionController::Base
02 add_breadcrumb 'Home', '/'
03 ...
04 end
05 class ThingsController < ApplicationController
06 add_breadcrumb 'Things', 'things_path'
07 add_breadcrumb 'Create a new thing', '', :only => [:new, :create]
08 add_breadcrumb ‘Edit a thing’, ”, :only => [:edit, :update]
(Link: Easy and flexible breadcrumbs for Rails « require ‘brain’)

Uncategorized ,

RailsLodge – Crumble plugin

July 8th, 2009

Crumble – It’s like breadcrumbs for your Rails application!
It’s a tiny combination of a helper and a simple configuration class to make breadcrumbs cool, because they’re not.
(Link: RailsLodge – Crumble plugin)

Uncategorized ,