forked from johnroper100/dropplets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
52 lines (39 loc) · 1.63 KB
/
config.php
File metadata and controls
52 lines (39 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
$blog_email = "mbond@the-forgotten.org";
$blog_twitter = "mbond";
$blog_url = "http://the-forgotten.org/";
$blog_title = "The-Forgotten.Org";
// meta tag for description in html header
$meta_description = "";
// Used to inject text (css, scripts, meta, etc ... ) into the header and footer of the site.
// @TODO these should be files to be included.
$header_inject = "";
$footer_inject = "";
// Template that the site uses. should be a directory located in the
// templates directory
$template = "simple";
// the maximum number of items to include in RSS feeds
$feed_max_items = "10";
// Date format displayed with posts
// Format parameters are standard php date() function options
// http://php.net/manual/en/function.date.php
$date_format = 'F jS, Y';
// set to "on" to cache individual posts, "off" to disable caching
$post_cache = "off";
// set to "on" to cache the website homepage, "off" to disable caching
$index_cache = "off";
// Turn on pagination on post list pages
// "on" or "off"
$pagination = "off";
// How many posts to put in a single page, only used if $pagination is "on"
$posts_per_page = 4;
// turn on infinate scrolling
// only used if $pagination is "on"
$infinate_scroll = "off";
// the default language for the blog
$language = 'en-us';
// 404 error page title
$error_title = 'Sorry, But That’s Not Here';
// 404 error page text
// @TODO this should be an include or something
$error_text = 'Really sorry, but what you’re looking for isn’t here. Click the button below to find something else that might interest you.';