Skip to content

Instantly share code, notes, and snippets.

@oreales
Forked from oscar-reales-interactiv4/phpnative.phtml
Created February 12, 2014 23:09
Show Gist options
  • Save oreales/8966409 to your computer and use it in GitHub Desktop.
Save oreales/8966409 to your computer and use it in GitHub Desktop.
<? 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