diff options
author | Bradley Taunt <bt@btxx.org> | 2024-02-02 13:05:54 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-02-02 13:05:54 -0500 |
commit | 13cec3d0fc257d0e65c9a1c06bfc71648722a506 (patch) | |
tree | aaf959aa898357abe14c45016a9071ce4d0587c0 /_phpetite/_config.php |
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'; + +?> |