From ad07963e4bb0fe72f9d8399448ed3c30d31e62ed Mon Sep 17 00:00:00 2001 From: manfromhuh Date: Sun, 17 Jul 2022 18:06:22 -0400 Subject: [PATCH] Add article tags --- common/authors/index.php | 2 ++ 1 file changed, 2 insertions(+) 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'); ?>