x
1
2
3
4
5
6
7
<nav class="Breadcrumb" role="navigation" aria-label="Breadcrumb"> <ol> <li class="Breadcrumb/Item"><a href="/">Home</a></li> <li class="Breadcrumb/Item"><a href="/sections">Sections</a></li> <li class="Breadcrumb/Item"><a href="" aria-current="page">Articles</a></li> </ol></nav>1
2
3
4
5
Breadcrumb() do |c| c.item(href: "/") { "Home" } c.item(href: "/sections") { "Sections" } c.item(href: "") { "Articles" }endMarkup and style based on ARIA Breadcrumb Pattern Example
No params configured.