forked from unimelb/unimelb-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_breadcrumbs.slim
25 lines (22 loc) · 1.03 KB
/
_breadcrumbs.slim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
- pos = 0
ol.page-local-history itemscope="" itemtype="http://schema.org/BreadcrumbList"
li.root itemprop="itemListElement" itemscope="" itemtype="http://schema.org/ListItem"
a itemprop="item" href="/"
span itemprop="name" Web.Unimelb
meta itemprop="position" content=(pos += 1)
- if @component
li itemprop="itemListElement" itemscope="" itemtype="http://schema.org/ListItem"
a itemprop="item" title="Components" href="/components"
span itemprop="name" Components
meta itemprop="position" content=(pos += 1)
- if @layout
li itemprop="itemListElement" itemscope="" itemtype="http://schema.org/ListItem"
a itemprop="item" title="Layouts" href="/layouts"
span itemprop="name" Layouts
meta itemprop="position" content=(pos += 1)
- if page_title
li.last itemprop="itemListElement" itemscope="" itemtype="http://schema.org/ListItem"
a itemprop="item" title=(page_title) href=""
span itemprop="name"
= page_title
meta itemprop="position" content=(pos += 1)