diff --git a/common/authors/index.php b/common/authors/index.php index 9af34d7..e050c22 100644 --- a/common/authors/index.php +++ b/common/authors/index.php @@ -4,6 +4,7 @@ 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 "
"; if (file_exists('byline.md')){ include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/md_read.php'); echo read_md('byline.md'); @@ -12,5 +13,6 @@ include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/md_read.php'); echo read_md('author.md'); } + echo "
"; include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/footer.php'); ?>