32 lines
628 B
PHP
Executable File
32 lines
628 B
PHP
Executable File
<?php
|
|
|
|
$fp_config = array (
|
|
'general' =>
|
|
array (
|
|
'www' => 'http://localhost',
|
|
'title' => 'FlatPress',
|
|
'subtitle' => 'My FlatPress blog',
|
|
'footer' => '',
|
|
'author' => 'admin',
|
|
'email' => 'webmaster@localhost.com',
|
|
'startpage' => 'about',
|
|
'maxentries' => '5',
|
|
'notify' => true,
|
|
'theme' => 'leggero',
|
|
'style' => 'leggero',
|
|
'blogid' => 'fpdefid',
|
|
'lang' => 'en-us',
|
|
'charset' => 'utf-8',
|
|
),
|
|
'locale' =>
|
|
array (
|
|
'timeoffset' => '2',
|
|
'timeformat' => '%H:%M:%S',
|
|
'dateformat' => '%A, %B %e, %Y',
|
|
'charset' => 'utf-8',
|
|
'lang' => 'en-us',
|
|
)
|
|
);
|
|
|
|
?>
|