Cube theme for Bespoke.js — View demo
Download the production version or the development version.
This theme is shipped in a UMD format, meaning that it is available as a CommonJS/AMD module or browser global.
For example, when using CommonJS modules:
var bespoke = require('bespoke'),
cube = require('bespoke-theme-cube');
bespoke.from('#presentation', [
cube()
]);
When using browser globals:
bespoke.from('#presentation', [
bespoke.themes.cube()
]);
This theme was built with generator-bespoketheme.