Skip to content

Instantly share code, notes, and snippets.

@weaverryan
Created June 30, 2014 11:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weaverryan/26c8166d16454b4c0829 to your computer and use it in GitHub Desktop.
Save weaverryan/26c8166d16454b4c0829 to your computer and use it in GitHub Desktop.
Twig Render
{{ item.about.url }}
<?php
$twig->render('index.html.twig', array(
'item'=>array(
'home'=>array(
'title' =>'Home',
'url '=>'/',
),
'about'=>array(
'title' =>'About us',
'url' =>'about-us.html',
),
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment