Go to file
Damian Mooyman 846eb9c270 Break out templates and expand 2015-03-05 13:05:03 +13:00
_config Addd GridField component for managing BlogPosts and added composer file 2013-08-10 23:34:46 +01:00
code Break out templates and expand 2015-03-05 13:05:03 +13:00
css Break out templates and expand 2015-03-05 13:05:03 +13:00
images NEW Decouple gridfield stuff into lumberjack module 2015-01-29 10:49:48 +00:00
lang Break out templates and expand 2015-03-05 13:05:03 +13:00
screenshots Added screenshots 2014-03-23 15:12:11 +00:00
scss Added more styling to blog post admin 2015-02-02 10:32:40 +00:00
templates Break out templates and expand 2015-03-05 13:05:03 +13:00
tests BUG Unused variable put to use. Doesn't show future posts on live stage 2014-11-13 09:06:48 +00: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
.travis.yml NEW Decouple gridfield stuff into lumberjack module 2015-01-29 10:49:48 +00:00
LICENSE updated license filename 2013-08-10 23:59:48 +01:00
README.md NEW Added new buttons to readme 2014-10-13 14:34:21 +13:00
_config.php NEW Decouple gridfield stuff into lumberjack module 2015-01-29 10:49:48 +00:00
composer.json Merge commit '9feee011cf35edacba8198eec0e267d3552c1bab' into develop 2015-02-07 12:38:29 +13:00
config.rb Addd GridField component for managing BlogPosts and added composer file 2013-08-10 23:34:46 +01:00

README.md

Silverstripe Blogger

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

A fresh take on blogging in Silverstripe set out to tackle the issue of a cluttered Site Tree.

Requirements

silverstripe/cms: ~3.1

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

Screenshots

Easily manage and add new blog posts through a GridField.

Quickly add new tags and categories.

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.

Theme

You can download a blog sub-theme of Silverstripe's default 'Simple' theme: https://github.com/micmania1/simple_blog