silverstripe-blog/README.md

69 lines
1.8 KiB
Markdown
Raw Normal View History

Silverstripe Blogger
====================
2013-08-11 00:59:15 +02:00
2013-10-10 01:45:25 +02:00
[![Build Status](https://travis-ci.org/micmania1/silverstripe-blogger.png?branch=1.0)](https://travis-ci.org/micmania1/silverstripe-blogger)
2013-08-11 01:26:17 +02:00
2013-10-10 01:45:25 +02:00
A fresh take on blogging in Silverstripe set out to tackle the issue of a cluttered Site Tree.
2013-08-11 02:58:25 +02:00
2013-08-11 01:26:17 +02:00
## Requirements
```
2013-10-10 01:45:25 +02:00
silverstripe/cms: ~3.1
2013-08-11 01:26:17 +02:00
```
## Suggested Modules
```
silverstripe/widgets: *
silverstripe/comments: *
```
## Installation
```
composer require micmania1/silverstripe-blog:1.0.*
```
## Features
* Blog Posts extend SiteTree so no Page functionality is lost by using DataObject's.
* Blog Posts can be listed in the SiteTree **OR** in a GridField within the blog, removing clutter for large blogs.
* Filter blog posts by category
* Filter blog posts by tag
* Full blog Archive by Year, month or day
* 4 widgets included (category listing, tag listing, archive & recent posts).
* Publish Date - Set a blog post to publish in the future.
* Custom GridField components for quickly adding new objects.
* RSS Feed of the blog
2014-03-23 16:03:44 +01:00
## Screenshots
*Easily manage and add new blog posts through a GridField.*
![](screenshots/blog-post-management.png)
*Quickly add new tags and categories.*
![](screenshots/blogpost-add-tags-categories.png)
2013-08-11 01:26:17 +02:00
## Usage
Because the blog is part of the SiteTree the usage is the same as any other page.
By default, blog posts are filtered out of the SiteTree to avoid clutter and instead put in a GridField inside of the blog. If you wish to display the blog posts within the site tree you can do so using Silverstripe config.
**YAML**
```
BlogPost:
show_in_sitetree: true
```
**PHP**
```
<?php
Config::inst()->update("BlogPost", "show_in_sitetree", true);
```
Doing this will remove the GridField & result in a normal behaving SiteTree.
2013-08-11 02:54:01 +02:00
## Theme
2013-08-11 02:58:25 +02:00
You can download a blog sub-theme of Silverstripe's default 'Simple' theme: https://github.com/micmania1/simple_blog