No commit activity in last 3 years
No release in over 3 years
Simple blog like functionality for Noodall
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 3.1.3
 Project Readme

Noodall Articles

Noodall Articles adds simple blog functionality to Noodall.

Install

Add to your Gemfile

gem 'noodall-articles', :git => 'git@github.com:noodall/noodall-articles.git'

Run bundle install

bundle install

Configuration

Noodall Articles adds an Article and ArticleList Node to Noodall.

ArticleList is the classic blog listing page. Article is an individual blog post.

In config/initializers/noodall.rb

Add the ArticleList as a root template

Noodall::Node.root_templates ArticleList, ContentPage

Noodall Articles also adds a LatestArticles component which you can to your slots if required.

Noodall::Node.slot :large, LatestArticles
Noodall::Node.slot :small, LatestArticles

You can now create an ArticleList as your blog listing page and Article Nodes beneath it.