Created
October 28, 2010 23:39
-
-
Save weaverryan/652568 to your computer and use it in GitHub Desktop.
Here's a small victory for a Twig noob
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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