roots-tumblr
v0.0.5
Published
tumblr theme compilation with roots
Downloads
13
Readme
Roots Tumblr
This is an extension to make building Tumblr themes easier, or make it easier to take Tumblr themes and use them outside of Tumblr. It's basically a wrapper around tumblr-theme-parser.
Installation
- ensure you are in a roots project directory
npm install roots-tumblr --save
Usage
To use the default tumblr json export:
# app.coffee
tumblr = require 'roots-tumblr'
module.exports =
extensions: [tumblr()]
To use a custom tumblr json export:
- login to tumblr and go to the URL
https://www.tumblr.com/customize_api/demo_content/YOURBLOGNAME
- Save JSON that's returned in a file like
./tumblr-demo-content.json
.
# app.coffee
tumblr = require 'roots-tumblr'
tumblrDemoContent = require './tumblr-content'
module.exports =
ignores: ['tumblr-demo-content.json']
extensions: [tumblr(tumblrDemoContent)]
License & Contributing
- Details on the license can be found here
- Details on running tests and contributing can be found here