Skip to content

Instantly share code, notes, and snippets.

@adamjohnson
Last active December 19, 2015 19:58
Show Gist options
  • Save adamjohnson/6009725 to your computer and use it in GitHub Desktop.
Save adamjohnson/6009725 to your computer and use it in GitHub Desktop.
Breadcrumbs in an unordered list for SlateCMS: http://slatecms.wvu.edu
#breadcrumbs li { display: inline; list-style-type: none; margin-left: 0; }
#breadcrumbs li:before { content: "\00BB"; padding-right: 3px; }
#breadcrumbs li:first-child:before { content: ""; padding-right: 0; }
<ul id="breadcrumbs" class="sixteen columns alpha omega">
<li><a href="/">Home</a></li>
<% for crumb in breadcrumbs %>
<li><%= link_to_page crumb %></li>
<% end %>
</ul> <!-- /#breadcrumbs -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment