Created
April 17, 2012 00:46
-
-
Save notslang/2402615 to your computer and use it in GitHub Desktop.
basic template for PATH page
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 'path.php'; | |
$html = new path; | |
echo '<!DOCTYPE html>'; | |
$html = | |
['html', | |
['head', | |
['title','PATH Template'] | |
], | |
['body', | |
] | |
]; | |
echo $html->compile(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment