Created
November 21, 2014 23:45
-
-
Save snide/df65643a36b0d355d929 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| Let's say you have two relations to your item, actors and directors, related to movies. On your movie page you could do this... | |
| {% set crew = merge(item.actors, item.directors) %} | |
| {% for crew in crew|sort('date_published', true) %} | |
| {{ crew.name }} | |
| {% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment