Blog module to add to Spina CMS.
Just add the gem file and run the rake task to install the migrations... and then run the migrations, obviously.
This will add an extra section to the 'website' navigation.
While blog posts are essentially just pages, they usually have a separate structure for date information. Rather than creating a bunch of pages, this plugin creates a scope called blog
for the front-end, under which all the posts reside (using the standard /:year/:month/:day/:slug
format).
Add this line to your application's Gemfile:
gem 'spina', '~> 0.12'
gem 'spina_blog', github: 'mattr/spina_blog'
And then execute:
$ bundle
- Fork it ( https://github.com/mattr/spina_blog/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
In addition to contributing code, you can help to triage issues. This can include reproducing bug reports, or asking for vital information such as version numbers or reproduction instructions.
The gem is available as open source under the terms of the MIT License.
Move the URL generation to usematerialized_path
.- Add configuration options to allow alternate namespaces (e.g.
news
). (See branch: feature/namespaced-blogs) - Allow multiple instances (e.g.
news
andblog
). (See branch: feature/namespaced-blogs) - Move field definitions to spina content types (i.e. spina_blog becomes a wrapper and custom routing module)
- Extract
published_at
andtags
to separate content type gems (spina_datetime
andspina_tags
respectively)