Created
April 11, 2013 09:26
-
-
Save oscar-reales-interactiv4/5361973 to your computer and use it in GitHub Desktop.
PHP Template vs. TWIG template
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
<? for($navigation as $item) : ?> | |
<li><a href="<?= $item->href ?>"><?= $item->caption ?></a></li> | |
<? endfor; ?> |
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
{% 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