Skip to content

Instantly share code, notes, and snippets.

@taea
Last active October 12, 2015 07:38
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taea/3993409 to your computer and use it in GitHub Desktop.
Save taea/3993409 to your computer and use it in GitHub Desktop.
Haml + breadcrumbs + microdata
%nav.breadcrumbs
%div{:itemscope => true, :itemtype => 'http://data-vocabulary.org/Breadcrumb'}
=link_to root_path, :itemprop => 'url' do
%span{:itemprop => 'title'}<>
HOME
%div{:itemscope => true, :itemtype => 'http://data-vocabulary.org/Breadcrumb'}
=link_to hoge_path, :itemprop => 'url' do
%span{:itemprop => 'title'}<>
hoge
%div{:itemscope => true, :itemtype => 'http://data-vocabulary.org/Breadcrumb'}
=link_to fuga_path, :itemprop => 'url' do
%span{:itemprop => 'title'}<>
fuga
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment