The minimal template generates content similarly to the regular template, but ignores site configuration and outputs only a basic HTML structure.
$FOOT
<body>
element.
$HEAD
<head>
element.
$TITLE
<title>
element; unlike the regular
template, no <h1>
element is output.
<?php
if (!isset($TEMPLATE)) {
$TITLE = 'Page Title';
include 'minimal.inc.php';
}
?>
<!-- content goes here -->