https://github.com/philecms/phile-blog-theme
This is a theme developed to showcase how blogging works on Phile
https://github.com/philecms/phile-blog-theme
philecms
Last synced: 7 months ago
JSON representation
This is a theme developed to showcase how blogging works on Phile
- Host: GitHub
- URL: https://github.com/philecms/phile-blog-theme
- Owner: PhileCMS
- License: mit
- Created: 2013-11-11T19:13:11.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-03-17T06:38:19.000Z (over 8 years ago)
- Last Synced: 2024-12-28T02:48:50.101Z (over 1 year ago)
- Topics: philecms
- Language: CSS
- Size: 15.6 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Phile-Blog-Theme
================
This is a theme developed to showcase how blogging works on [Phile](https://github.com/PhileCMS).
### Disclaimer
Please use a fresh Phile installation in order to avoid errors not associated with this theme/demo.
### Installation
First, [download this repo](https://github.com/james2doyle/Phile-Blog-Theme/archive/master.zip) 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:
```php
…
// 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'] = 'meta.date:desc'; // this is a blog so date ordering
return $config;
```