Skip to content

Instantly share code, notes, and snippets.

@notslang
Created April 17, 2012 00:46
Show Gist options
  • Save notslang/2402615 to your computer and use it in GitHub Desktop.
Save notslang/2402615 to your computer and use it in GitHub Desktop.
basic template for PATH page
<?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