- {
- // when requesting http://pu.gu.com/content/nav
- nav_items = REQUEST('nav_items') ? REQUEST('nav_items') : [
- { href: '/culture', text: 'Culture' },
- { href: '/sport', text: 'Sport' }
- ]
- }
- <ul role="navigation">
- {% foreach nav_items as nav_item %}
- <li><a href="{{ nav_item.href }}">{{ nav_item.text }}</a></li>
- {% endforeach %}
- </ul>