Skip to content

Instantly share code, notes, and snippets.

@oscar-reales-interactiv4
Created April 11, 2013 09:26
Show Gist options
  • Save oscar-reales-interactiv4/5361973 to your computer and use it in GitHub Desktop.
Save oscar-reales-interactiv4/5361973 to your computer and use it in GitHub Desktop.
PHP Template vs. TWIG template
<? for($navigation as $item) : ?>
<li><a href="<?= $item->href ?>"><?= $item->caption ?></a></li>
<? endfor; ?>
{% for item in navigation %}
<li><a href="{{ item.href }}">{{ item.caption }}</a></li>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment