Skip to content

Instantly share code, notes, and snippets.

@LionsAd
Forked from mortendk/breadcrump.twig
Created October 7, 2012 17:42
Show Gist options
  • Save LionsAd/3849035 to your computer and use it in GitHub Desktop.
Save LionsAd/3849035 to your computer and use it in GitHub Desktop.
twig loops
<nav class="breadcrumb" role="navigation">
<h2 class="element-invisible">{{ 'You are here'|t }}</h2>
<ol>
{% for item in breadcrumb %}
{% if loop.first %}
<li class="first">{{ item }}</li>
{% elseif loop.last %}
<li class="last">{{ item }}</li>
{% else %}
<li>{{ item }}</li>
{% endif %}
{% endfor %}
</ol>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment