Skip to content

Instantly share code, notes, and snippets.

@TakuyaAbe
Last active April 13, 2016 06:49
Show Gist options
  • Save TakuyaAbe/cef4bc3246ad7c295dd6 to your computer and use it in GitHub Desktop.
Save TakuyaAbe/cef4bc3246ad7c295dd6 to your computer and use it in GitHub Desktop.
jade-snippets
mixin breadcrumb(list)
ol.breadcrumb(itemscope itemtype="http://schema.org/BreadcrumbList")
- for(label in list) {
- if(list[label] === "") {
li(itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem")
span(itemprop="name") !{label}
- } else {
li(itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem")
a.js-hover(href="#{list[label]}" itemprop="item")
span(itemprop="name") !{label}
- }
- }
- var list = {"TOP": "/", "第一階層": "/xx/", "現在ページ": ""}
+breadcrumb(list)
!= '\n<!--[if lt IE 9]>'
script(src='//oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js')
!= '\n<![endif]-->\n'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment