Created
September 4, 2018 10:29
-
-
Save Esmala/addc4ee9340ae82ede2c8597101ce29a 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