This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 2013 Filip Weiss | |
var fs = require("fs"); | |
var path = require("path"); | |
// config | |
var partialsDir = __dirname + '/../views/partials'; | |
var hbs; | |
exports.watch = function(_partialsDir, _hbs){ | |
hbs = _hbs; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Uses this image: http://dl.dropbox.com/u/5768678/minecraft-sprites/blocks.png */ | |
.block { | |
background-image: url('blocks.png'); | |
width: 32px; | |
height: 32px; | |
} | |
#cobblestone { background-position: 0px 0px; } | |
#stone-bricks-1 { background-position: 0px -32px; } | |
#lapis-lazuli-block { background-position: 0px -64px; } |