Leggero V2 is default theme (see #57)

This commit is contained in:
azett 2020-01-03 18:19:54 +01:00
parent eb20caebc5
commit 0cceecaa02

View File

@ -1,42 +1,34 @@
<?php <?php
$fp_config = array(
$fp_config = array ( 'general' => array(
'general' => 'www' => 'http://localhost',
array ( 'title' => 'FlatPress',
'www' => 'http://localhost', 'subtitle' => 'My FlatPress blog',
'title' => 'FlatPress', 'footer' => '',
'subtitle' => 'My FlatPress blog', 'author' => 'FlatPress Team',
'footer' => '', 'email' => 'webmaster@localhost.com',
'author' => 'FlatPress Team', 'startpage' => NULL,
'email' => 'webmaster@localhost.com', 'maxentries' => '5',
'startpage' => NULL, 'notify' => true,
'maxentries' => '5', 'theme' => 'leggero',
'notify' => true, 'style' => 'leggero-v2',
'theme' => 'leggero', 'blogid' => 'fpdefid',
'style' => 'leggero', 'charset' => 'utf-8'
'blogid' => 'fpdefid',
'charset' => 'utf-8',
),
'locale' =>
array (
'timeoffset' => '2',
'timeformat' => '%H:%M:%S',
'dateformat' => '%A, %B %e, %Y',
'dateformatshort' => '%Y-%m-%d',
'charset' => 'utf-8',
'lang' => 'en-us',
),
'plugins' =>
array (
'blockparser' =>
array (
'pages' =>
array(
'menu',
'about',
),
), ),
), 'locale' => array(
); 'timeoffset' => '2',
'timeformat' => '%H:%M:%S',
?> 'dateformat' => '%A, %B %e, %Y',
'dateformatshort' => '%Y-%m-%d',
'charset' => 'utf-8',
'lang' => 'en-us'
),
'plugins' => array(
'blockparser' => array(
'pages' => array(
'menu',
'about'
)
)
)
);