19 lines
713 B
PHP
19 lines
713 B
PHP
<?php
|
|
//The common file used to render pages on the blog.
|
|
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/header.php');
|
|
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/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.
|
|
echo "<article>";
|
|
if (file_exists('byline.md')){
|
|
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/md_read.php');
|
|
echo read_md('byline.md');
|
|
}
|
|
if (file_exists('author.md')){
|
|
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/md_read.php');
|
|
echo read_md('author.md');
|
|
}
|
|
echo "</article>";
|
|
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/footer.php');
|
|
?>
|