" . basename($file) . ""; } else { $badness = true; $foo = basename($file); $title = "$foo not found"; } } } // If we're not showing the HTML, ensure that we're MIME type text/plain if ($no_html) header("Content-Type: text/plain"); // Start the document if ($badness || !$no_html) { head("The Matrix Template Library", urlencode($title)); begin_document(); left_column(); begin_main_column(); begin_section($title); } // Display the body if ($badness) { ?>


Bummer! Something seems to be wrong here -- we didn't get the filename to show you. Sorry...

Show this file without HTML\n"); print("

\n");
    include($file);
    print("
\n"); } } // End the document if ($badness || !isset($no_html)) { end_subsection(); end_main_column(); end_document(); }