add_byline #17

Merged
20xd6 merged 19 commits from manfromhuh/simple_blog:add_byline into master 2022-07-26 10:33:29 -04:00
Showing only changes of commit a0e3de1200 - Show all commits

View File

@ -6,9 +6,11 @@
//If it is not then it is a menu page.
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');
}
include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/footer.php');
?>