mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-24 13:11:46 +00:00
36afabf07e
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.
11 lines
305 B
PHP
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
|
|
?>
|