Phile README.md


Phile-Blog-Theme

This is a theme developed to showcase how blogging works on Phile.

Disclaimer

Please use a fresh Phile installation in order to avoid errors not associated with this theme/demo.

Installation

First, download this repo and drop the folder into the root directory that Phile was installed into.

The following changes need to be made to your config.php file in order for this theme to work normally:

// set the theme for this installation
$config['theme'] = 'blog';

// set some defaults for the pages
$config['date_format'] = 'jS F, Y'; // 11th November, 2013
$config['pages_order_by'] = 'date'; // this is a blog so date ordering
$config['pages_order'] = 'desc';

// disable the cache for this theme since we are in development
$config['plugins'] = array(
  'philePhpFastCache' => array('active' => false),
  'phileSimpleFileDataPersistence' => array('active' => false)
);

return $config;