mirror of
https://git.code.sf.net/p/quake/website
synced 2024-12-02 17:12:20 +00:00
9 lines
274 B
PHP
9 lines
274 B
PHP
<? // Preamble
|
|
$pageName = "Page Subtitle";
|
|
$currPage = "none"; // Page name, for menu -- see pages.txt
|
|
require "parts/preamble.php"; // Load up most of the document
|
|
?>
|
|
Page content goes here.
|
|
<?
|
|
require siteHome . "/parts/postamble.php"; // Finish this sucker up
|
|
?>
|