Created
September 4, 2018 10:27
-
-
Save Esmala/6276774308968155291eb740ab23665f to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
require_once 'vendor/autoload.php'; | |
$loader = new Twig_Loader_Filesystem('templates'); | |
$twig = new Twig_Environment($loader); | |
echo $twig->render('index.html.twig', array('navigation' => array('link_href' => 'about.html', 'link' => 'About'))); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment