From 858d880837e2ee64e920c9d0018f07c3118dc859 Mon Sep 17 00:00:00 2001 From: manfromhuh Date: Tue, 20 Dec 2022 16:53:38 -0500 Subject: [PATCH] Update 'README.md' Add links to the PHP files. --- README.md | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 585515e..9e43d54 100644 --- a/README.md +++ b/README.md @@ -79,20 +79,18 @@ This directory contains the files and libraries used to render the site's pages. * [page_format.js](/git/20xd6/simple_blog/src/branch/master/common/js/page_format.js) - The main JS file used for formatting and adding extra functions to pages. -#### PHP +#### [PHP](/git/20xd6/simple_blog/src/branch/master/common/php) -* [footer.php]() - The common page footer. Contains copyright information and links to the license. -* [get_month_name.php]() - Translates a numeral month into the corresponding name. I.E. 01 into January. -* [h1_month.php]() - Adds the proper `

` heading based on the location of the -* [header.php]() - The common page header. -* [index.php]() - The index file used for most of the pages on the site. +* [footer.php](/git/20xd6/simple_blog/src/branch/master/common/php/footer.php) - The common page footer. Contains copyright information and links to the license. +* [get_month_name.php](/git/20xd6/simple_blog/src/branch/master/common/php/get_month_name.php) - Translates a numeral month into the corresponding name. I.E. 01 into January. +* [h1_month.php](/git/20xd6/simple_blog/src/branch/master/common/php/h1_month.php) - Adds the proper `

` heading based on the location of the +* [header.php](/git/20xd6/simple_blog/src/branch/master/common/php/header.php) - The common page header. +* [index.php](/git/20xd6/simple_blog/src/branch/master/common/php/index.php) - The index file used for most of the pages on the site. * [markdown.php]() -* [md_read.php]() - Renders Markdown files and adds -* [menu.php]() - Generates the blog menu items in the navigation menu. -* [modal.php]() - Adds the modal `
` for displaying the image pop out. -* [page_menu.php]() - Generates a menu from the files and directories where it's run from. -* [page_menu_table.php]() -* [path_menu.php]() +* [md_read.php](/git/20xd6/simple_blog/src/branch/master/common/php/md_read.php) - Renders Markdown files and adds +* [menu.php](/git/20xd6/simple_blog/src/branch/master/common/php/menu.php) - Generates the blog menu items in the navigation menu. +* [modal.php](/git/20xd6/simple_blog/src/branch/master/common/php/modal.php) - Adds the modal `
` for displaying the image pop out. +* [page_menu.php](/git/20xd6/simple_blog/src/branch/master/common/php/page_menu.php) - Generates a menu from the files and directories where it's run from. #### /common/error_pages/