Skip to content

Instantly share code, notes, and snippets.

@shimakyohsuke
Last active January 18, 2016 06:41
Show Gist options
  • Save shimakyohsuke/57d3e9b0fc5b785125e3 to your computer and use it in GitHub Desktop.
Save shimakyohsuke/57d3e9b0fc5b785125e3 to your computer and use it in GitHub Desktop.
[KFUG UI勉強会 − サイボウズの新オフィスで学ぶ2016年のUI](http://kfug.connpass.com/event/24182/) のスライド用Gist
//- _mixins.jade
mixin breadcrumb(...items)
div(itemscope='itemscope', itemtype='http://data-vocabulary.org/Breadcrumb')
a(href=dir, itemprop='url')
span(itemprop='title')
= pageName
| >
//- index.jade
include _mixins.jade
.breadcrumbs
nav
+breadcrumb(
{pageName: "ページの名前", dir: "http://example.com/"}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment