Created
April 18, 2012 03:33
-
-
Save jacine/2410927 to your computer and use it in GitHub Desktop.
Twig list template
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
<!-- Simple --> | |
<ul{{ items.attributes }}> | |
{% for item in items %} | |
<li{{ item.attributes }}> {{ item }} </li> | |
{% endfor %} | |
</ul> | |
<!-- Detailed --> | |
<ul{{ items.attributes }}> | |
{% for item in items %} | |
<li{{ item.attributes }}> | |
{% if item.href %} | |
<a href="{{ item.href }}"> {{ item.title }} </a> | |
{% else %} | |
{{ item }} | |
{% endif %} | |
</li> | |
{% endfor %} | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I kinda love this.
@chx is making it happen!