simple_blog/common/index.php

15 lines
635 B
PHP

<?php
//The common file used to render pages on the blog.
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/header.php');
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/menu.php');
//Looks for an article.md to see if the current directory is an article or not
//If it is not then it is a menu page.
if (file_exists('article.md')){
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/md_read.php');
} else {
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/h1_month.php');
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/page_menu.php');
}
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/footer.php');
?>