Sure, sorry.. I'm just trying to figure out how to set up a simple template script to make it easier to change layouts... I've looked everywhere for tutorials, but they're all more complicated than what I need (ie FastTemplate). I would just like something using echo/include/require tags.
This is what my index.php file currently looks like:
<?php
$siteTitle = "Sample Site"; // This is the title of your website
$default = "blog"; // This is the filename for the default file you want called when no specific page is called.
$MainPage = "header.php"; // Main Template File
$Content = "./es"; // Location of Content
require ("header.php");
if ($es == bio){
include "bio.php";
}
?>
And I suppose I'd have to add all the other subsections along with bio.php... The only thing is, when I plug in www.englishsun.org/test/, I get blog.php in the content area, which is what I want... but when I click on "bio," I just get the blog page again.
I don't know if that helps you figure out what I'm asking...