diff options
author | Nathan Lasseter <nathan@4574.co.uk> | 2012-10-10 20:03:21 +0100 |
---|---|---|
committer | Nathan Lasseter <nathan@4574.co.uk> | 2012-10-10 20:03:21 +0100 |
commit | 94c589ed55b20a581810e126b20fdc2d67c68221 (patch) | |
tree | 7d3d84aa3cc291417f667ee48a3fc120b95b2e43 /settings.php |
Initial commit
Diffstat (limited to 'settings.php')
-rw-r--r-- | settings.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/settings.php b/settings.php new file mode 100644 index 0000000..014f48b --- /dev/null +++ b/settings.php @@ -0,0 +1,14 @@ +<?php +//Blog root directory RELATIVE TO SERVER ROOT +$blogRoot = "/"; +//$blogRoot = "/blog/"; + +//Posts directory RELATIVE TO FILESYSTEM ROOT +$blogPosts = "/var/www/posts/"; +//$blogPosts = "/var/www/blog/posts/"; + +//Page title +$blogTitle = "My Clog Blog"; +//Header title +$blogHead = $blogTitle; +?> |