Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/romellogoodman/blogjs

A JSON Powered Blog System.
https://github.com/romellogoodman/blogjs

Last synced: 11 days ago
JSON representation

A JSON Powered Blog System.

Awesome Lists containing this project

README

        

# BlogJS
[www.romellogoodman.com/blogjs](http://www.romellogoodman.com/blogjs "BlogJS' Homepage")

BlogJS A JSON Powered Blog System.

Documentation is a work in progress.

## Requirements
jQuery (for now)

### To use
``` HTML








// Set your initials
window.onload = function(){
// Set this field equal to your JSON object.
BlogJS.initials.blogPosts = posts;
// Specify the place where the posts load (defaulted to #posts)
BlogJS.initials.appendListTo = "#list-of-articles";
// Specify the place where the list of articles load (defaulted to #list-of-articles)
BlogJS.initials.appendPostTo = "#post";
// Specify the page where the #list-of-articles & #post are.
// Both are defaulted to index. (index.html)
BlogJS.initials.postLocation = "index";
BlogJS.initials.listLocation = "index";
// Starts the whole process.
BlogJS.loadPage();
};







Read More


```