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