<?php
    /*
     * index.php
     * Serve up a website for our fine users.
     * -CM   8 Feb 2004
     */
    require("common/functions.php");           /* all the functions */
    
    if(!$cn = $_GET["cont"])    /* index */
        $cn = "index";
        
    if(contentExists($cn)) {
        sendLastModified($cn);
    } else { 
        $cn = setErrorAndSendHeader($_GET["cont"]);
    }
    
    require("common/stdhead.php");             /* doctype, title, etc. */
    require("common/sidebar.php");             /* sidebar links & descriptions */
    require("common/content-mangler.php");     /* adds content things */
    require("common/stdfoot.php");             /* finish it up */
    
?>