
This is where you will change the content for a given page. You can locate these files in the pages folder.
The main home page will be called home.php. If a page is not found they will be served the content located in 404.php. It is a generic page saying the page they were looking for was not found.
To add a page you will need to add a new file into the pages folder and make sure it ends with .php. For example if you want to add a new review page you would add the file named review.php to the pages folder.
To navigate to your new page you will need to use the following format http://www.Site.com/reviews where 'reviews' is the name of the page in question without the .php. Click Here to visit Reviews page.
Even though the 'pages' files end with .php you don't need to include any php. Regular html will work just fine. I have set it up to automatically pull the content and display. This system is also flexible enough that if we need to include php in the content of page these files will be able to accomodate it in the future.