diff --git a/content/admin/static/about.md b/content/static/about.md similarity index 100% rename from content/admin/static/about.md rename to content/static/about.md diff --git a/content/admin/static/contact.md b/content/static/contact.md similarity index 100% rename from content/admin/static/contact.md rename to content/static/contact.md diff --git a/system/includes/functions.php b/system/includes/functions.php index a4b342c..fed81f7 100644 --- a/system/includes/functions.php +++ b/system/includes/functions.php @@ -31,9 +31,9 @@ function get_spage_names(){ if(empty($_cache)){ // Get the names of all the - // static page (newest first): + // static page. - $_cache = glob('content/*/static/*.md', GLOB_NOSORT); + $_cache = glob('content/static/*.md', GLOB_NOSORT); } return $_cache; @@ -47,7 +47,7 @@ function get_author_names(){ if(empty($_cache)){ // Get the names of all the - // author: + // author. $_cache = glob('content/*/author.md', GLOB_NOSORT); }