Skip to content

Instantly share code, notes, and snippets.

@brianwebb01
Created July 13, 2011 11:49
Show Gist options
  • Save brianwebb01/1080161 to your computer and use it in GitHub Desktop.
Save brianwebb01/1080161 to your computer and use it in GitHub Desktop.
Wigwam CMS relationships example Liquid code.
{% for school in custom_modules.schools.records %}
<h1>{{ school.name }}</h1>
<p>{{ school.description }}</p>
<p><b>Students:</b></p>
<ul>
{% for student in school.students %}
<li>{{ student.name }}</li>
{% endfor %}
</ul>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment