Sha256: de639305bfb015b0b7ef0641c93f9087a45ef2154b57ef4c6c805b7536083d03

Contents?: true

Size: 317 Bytes

Versions: 9

Compression:

Stored size: 317 Bytes

Contents

# frozen_string_literal: true

# Render avatar based on a user's profile
module CoreBreadcrumbHelper
  # @abstract Render a single step for the breadcrumb
  def breadcrumb_step(path, title)
    content_tag(:li, class: "breadcrumb-item active") do
      concat(content_tag(:a, href: path) { title })
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
web47core-3.2.20 app/helpers/core_breadcrumb_helper.rb
web47core-3.2.19 app/helpers/core_breadcrumb_helper.rb
web47core-3.2.18 app/helpers/core_breadcrumb_helper.rb
web47core-3.2.17 app/helpers/core_breadcrumb_helper.rb
web47core-3.2.16 app/helpers/core_breadcrumb_helper.rb
web47core-3.2.15 app/helpers/core_breadcrumb_helper.rb
web47core-3.2.14 app/helpers/core_breadcrumb_helper.rb
web47core-3.2.13 app/helpers/core_breadcrumb_helper.rb
web47core-3.2.12 app/helpers/core_breadcrumb_helper.rb