Skip to content

Instantly share code, notes, and snippets.

@weaverryan
Created October 28, 2010 23:39
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weaverryan/652568 to your computer and use it in GitHub Desktop.
Save weaverryan/652568 to your computer and use it in GitHub Desktop.
Here's a small victory for a Twig noob
<div id="breadcrumbs">
{% for breadcrumb in breadcrumbs %}
{% if not loop.last %}
{{ breadcrumb | raw }} {{ breadcrumbs.separator | raw }}
{% else %}
<strong>{{ breadcrumb.label }}</strong>
{% endif %}
{% endfor %}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment