From ef6bddddeb661f34a0b3ac3d5b96003a7dece032 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Wed, 26 Apr 2017 00:57:06 -0600 Subject: [PATCH] Update readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0e096f0..a008782 100644 --- a/README.md +++ b/README.md @@ -9,19 +9,19 @@ Program Structure ----------------- ### Folders -*lang +* lang Translations and alert messages. The language file that is loaded depends on the value of `LANGUAGE` in `settings.php`. Translate the values (but not the keys) in `en_us.php` into other languages and save in appropriately named files to add languages. -*lib +* lib A good place to put helper functions that you don't want "in the way". -*pages +* pages What it looks like. If you go into `pages.php` and define a page with the name `foo`, there should be a `foo.php` in here. The app checks before loading, so it will give a friendly 404 error if it doesn't find your page. Woe to you if you delete `home.php` or `404.php`, as those are assumed to exist for fallback behavior. -*static +* static CSS, JS, fonts, images... -*vendor +* vendor If you don't know what this is about, or you don't have it, you need to read up on Composer. Right now. ### Files