Module: CoreBreadcrumbHelper
- Defined in:
- app/helpers/core_breadcrumb_helper.rb
Overview
Render avatar based on a user’s profile
Instance Method Summary collapse
Instance Method Details
#breadcrumb_step(path, title) ⇒ Object
This method is abstract.
Render a single step for the breadcrumb
6 7 8 9 10 |
# File 'app/helpers/core_breadcrumb_helper.rb', line 6 def (path, title) content_tag(:li, class: "breadcrumb-item active") do concat(content_tag(:a, href: path) { title }) end end |