diff options
Diffstat (limited to '_phpetite/_config.php')
-rw-r--r-- | _phpetite/_config.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/_phpetite/_config.php b/_phpetite/_config.php new file mode 100644 index 0000000..c4e29b6 --- /dev/null +++ b/_phpetite/_config.php @@ -0,0 +1,17 @@ +<?php + + // Your site title and meta description + $site_title = 'PHPetite'; + $site_desc = 'A single file, static blog generated from PHP'; + $site_url = 'https://phpetite.btxx.org'; + $site_author = 'Bradley Taunt'; + $site_email = 'bt@btxx.org'; + + // Activate or disable images to base64 strings + $images_to_base64 = true; + + // You probably don't need to change these :P + $site_style = 'style.css'; + $site_icon = 'content/img/icon.png'; + +?> |