Skip to content

Instantly share code, notes, and snippets.

@shackep
Created June 10, 2016 15:02
Show Gist options
  • Save shackep/743a204a3bf005c81ba0c902f4f7005f to your computer and use it in GitHub Desktop.
Save shackep/743a204a3bf005c81ba0c902f4f7005f to your computer and use it in GitHub Desktop.
Twig Basics Example 9
{# Single Author Context #}
{% block sidebar %}
{% include 'modules/author.twig' %}
{% endblock %}
{# Multiple Author Context #}
{% block sidebar %}
{% for author in authors %}
{% include 'modules/author.twig' %}
{% endfor %}
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment