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,8 +1,6 @@
<?php <?php
$fp_config = array(
$fp_config = array ( 'general' => array(
'general' =>
array (
'www' => 'http://localhost', 'www' => 'http://localhost',
'title' => 'FlatPress', 'title' => 'FlatPress',
'subtitle' => 'My FlatPress blog', 'subtitle' => 'My FlatPress blog',
@ -13,30 +11,24 @@ $fp_config = array (
'maxentries' => '5', 'maxentries' => '5',
'notify' => true, 'notify' => true,
'theme' => 'leggero', 'theme' => 'leggero',
'style' => 'leggero', 'style' => 'leggero-v2',
'blogid' => 'fpdefid', 'blogid' => 'fpdefid',
'charset' => 'utf-8', 'charset' => 'utf-8'
), ),
'locale' => 'locale' => array(
array (
'timeoffset' => '2', 'timeoffset' => '2',
'timeformat' => '%H:%M:%S', 'timeformat' => '%H:%M:%S',
'dateformat' => '%A, %B %e, %Y', 'dateformat' => '%A, %B %e, %Y',
'dateformatshort' => '%Y-%m-%d', 'dateformatshort' => '%Y-%m-%d',
'charset' => 'utf-8', 'charset' => 'utf-8',
'lang' => 'en-us', 'lang' => 'en-us'
), ),
'plugins' => 'plugins' => array(
array ( 'blockparser' => array(
'blockparser' => 'pages' => array(
array (
'pages' =>
array(
'menu', 'menu',
'about', 'about'
), )
), )
), )
); );
?>