Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.6 KB

README.textile

File metadata and controls

49 lines (35 loc) · 1.6 KB

Features

Pop is a static site builder for Node, optimised for blogs; based on Jekyll.

  • Designed to be a workhorse for large production blogs
  • Useful built-in helpers: hNews post generation, pagination, tags
  • Extend using your own helpers and pre-filters
  • Plugins

Installation

npm install -g pop

Global is preferred. If you want to use pop server, you’ll need to install Express too.

Documentation

Configuration File Options

Must be valid JSON.

{  "url": "http://popjs.com/"                   // Your site's URL
 , "title": "Pop Blog"                          // The title of your site
 , "permalink": "/:year/:month/:day/:title"     // Post link format
 , "paginate": 10                               // Number of posts to include on a page
 , "exclude": ["\\.swp"]                        // Files to exclude
 , "require": ["pop-disqus"]                    // Plugins
 , "output": "_site/"                           // The place to put the generated HTML
 , "autoGenerate": [{"feed": "feed.xml"}]       // Files to autogenerate using Pop's built-in pages
}

Contributions

  • George Ornbo

Plugins