Go to file
helpfulrobot 834343c9c0 Added standard code of conduct 2015-11-21 20:12:35 +13:00
.tx Add translations to transifex 2015-04-22 16:17:09 +12:00
_config Comment notification extensions 2015-04-09 16:03:30 +12:00
code allow injection on date 2015-11-20 08:53:20 +01:00
css Merge pull request #208 from A7DC/category-ux 2015-04-28 14:25:28 +12:00
docs Removed featured posts 2015-11-19 10:09:46 +13:00
images included icon for move button, ensured link is 100% width 2015-04-23 15:14:43 +12:00
js API Improve sizing of blog sidebar 2015-04-23 14:30:58 +12:00
lang Update translations 2015-11-17 16:07:37 +13:00
scss Merge pull request #208 from A7DC/category-ux 2015-04-28 14:25:28 +12:00
templates Removed featured posts 2015-11-19 10:09:46 +13:00
tests FIX Title bug due to #320 2015-11-10 10:20:12 +13:00
.editorconfig Added standard editor config 2015-11-19 13:24:47 +13:00
.gitattributes Added standard git attributes 2015-11-19 19:11:09 +13:00
.gitignore ENHANCEMENT: Updated Blog to allow for better subclassing. You can now set different show_in_sitetree config options on subclasses. Also done some cleanup 2014-02-16 07:48:44 +00:00
.scrutinizer.yml Added standard Scrutinizer config 2015-11-18 15:01:24 +13:00
.travis.yml Move to new travis containerised infrastructure 2015-07-20 15:59:29 +01:00
README.md Update README to include additional requirements 2015-10-16 10:24:29 -05:00
_config.php NEW Decouple gridfield stuff into lumberjack module 2015-01-29 10:49:48 +00:00
changelog.md Add changelog for release 2015-11-20 12:52:01 +13:00
code-of-conduct.md Added standard code of conduct 2015-11-21 20:12:35 +13:00
composer.json Add changelog for release 2015-11-20 12:52:01 +13:00
config.rb Remove comments CSS from blog and into comments module 2015-04-21 15:15:15 +12:00
license.md Added standard license 2015-11-19 18:29:47 +13:00

README.md

SilverStripe Blog Module

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

Features

Requirements

silverstripe/cms: ~3.1
silverstripe/lumberjack: ~1.1
silverstripe/tagfield: ^1.0

Suggested Modules

silverstripe/widgets: *
silverstripe/comments: *

Installation

composer require silverstripe/blog 2.0.x-dev

Upgrading legacy blog to 2.0

If you're upgrading from blog version 1.0 to 2.0 you will need to run the BlogMigrationTask. Run the task using dev/tasks/BlogMigrationTask either via the browser or sake CLI to migrate your legacy blog to the new version data structure.

Usage

Because your blog is part of the SiteTree, usage is the same as any other page.

By default, blog posts don't appear in the SiteTree, to avoid clutter. Instead they appear inside your blog as a GridField.

If you'd rather display your posts within the SiteTree, you can do so using SilverStripe config.

In mysite/_config/settings.yml

BlogPost:
  show_in_sitetree: true