website/template.php
Jeff Teunissen 36afabf07e sponsor_incl.html: HTML cleanups.
template.php: Updated to match new way of doing this stuff. It's only 12
lines in length now, including <!--SEARCHME--> and <!--NOSEARCH--> tags to
mark what gets searched by the spider I'm developing for the web site.
2000-04-28 04:17:22 +00:00

11 lines
305 B
PHP

<? // Preamble
$pagename = "Page Name";
$focused = "none"; // Dock icon name to gets a border
require("parts/preamble.php"); // Load most of document
?>
<!--SEARCHME-->
Page content goes here. Yes, it's that simple.
<!--NOSEARCH-->
<?
require("parts/postamble.php"); // Finish this sucker up
?>