diff --git a/CHANGELOG.md b/CHANGELOG.md index fedfe29..8fabe80 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.1.0 +* There's now a very, very, very basic theme to do something from. ([#25](https://github.com/sondr3/generator-jekyllized/issues/25)) +* Running tests now work. ([#24](https://github.com/sondr3/generator-jekyllized/issues/24)) +* Added a bunch of badges to the README. Yay, badges, badges, badgers, badgers. + ## 0.0.9 (January 28, 2014) * Major restructuring and fixing of the Gruntfile and Index.js. This removes the functionality for the deploy options and changes the assets directories so you can't change them. * Added Bitdeli, Travis CI and Waffle.io to the README. ([#23](https://github.com/sondr3/generator-jekyllized/issues/23)) & ([#21](https://github.com/sondr3/generator-jekyllized/issues/21)) & ([#20](https://github.com/sondr3/generator-jekyllized/issues/20)) diff --git a/README.md b/README.md index 616e104..fb88cb8 100755 --- a/README.md +++ b/README.md @@ -1,12 +1,9 @@ -[![Stories in Ready](https://badge.waffle.io/sondr3/generator-jekyllized.png?label=ready)](https://waffle.io/sondr3/generator-jekyllized) -[![Build Status](https://travis-ci.org/sondr3/generator-jekyllized.png?branch=master)](https://travis-ci.org/sondr3/generator-jekyllized) -[![Dependency Status](https://david-dm.org/sondr3/generator-jekyllized.png?theme=shields.io)](https://david-dm.org/sondr3/generator-jekyllized) -[![devDependency Status](https://david-dm.org/sondr3/generator-jekyllized/dev-status.png)](https://david-dm.org/sondr3/generator-jekyllized#info=devDependencies) - # generator-jekyllized [![NPM version](https://badge.fury.io/js/generator-jekyllized.png)](http://badge.fury.io/js/generator-jekyllized) -[![NPM](https://nodei.co/npm/generator-jekyllized.png?compact=true)](https://nodei.co/npm/generator-jekyllized/) +[![Build Status](https://travis-ci.org/sondr3/generator-jekyllized.png?branch=master)](https://travis-ci.org/sondr3/generator-jekyllized) +[![Dependency Status](https://david-dm.org/sondr3/generator-jekyllized.png?theme=shields.io)](https://david-dm.org/sondr3/generator-jekyllized) +[![devDependency Status](https://david-dm.org/sondr3/generator-jekyllized/dev-status.png)](https://david-dm.org/sondr3/generator-jekyllized#info=devDependencies) ### NOTE: WORK IN PROGRESS ## **Bugs ahoy! Use at your own discretion.** @@ -25,6 +22,8 @@ Jekyllized is a highly opinionated generator for developing static sites, and es - [HTML5 ★ BOILERPLATE][html5boilerplate] based theme - Sane Jekyll defaults with some extras +[![Stories in Ready](https://badge.waffle.io/sondr3/generator-jekyllized.png?label=ready)](https://waffle.io/sondr3/generator-jekyllized) + [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/sondr3/generator-jekyllized/trend.png)](https://bitdeli.com/free "Bitdeli Badge") [jekyll]: https://jekyllrb.com diff --git a/app/index.js b/app/index.js index 8edd844..9f894e4 100755 --- a/app/index.js +++ b/app/index.js @@ -275,16 +275,13 @@ JekyllizeGenerator.prototype.jekyllInit = function jekyllInit() { }; JekyllizeGenerator.prototype.templates = function templates() { - this.template('conditional/template/_layouts/default.html', 'app/_layouts/default.html'); - this.template('conditional/template/index.md', 'app/index.md'); - if (this.googleAnalytics) { this.copy('conditional/template/_includes/_googleanalytics.html', 'app/_includes/_googleanalytics.html'); }; }; -JekyllizeGenerator.prototype.coffeescript = function coffeescript() { +/*JekyllizeGenerator.prototype.coffeescript = function coffeescript() { this.mkdir('app/assets/_coffee'); this.copy('conditional/coffee/README.md', 'app/assets/_coffee/README.md'); this.copy('conditional/coffee/app.coffee', 'app/assets/_coffee/app.coffee'); -}; \ No newline at end of file +};*/ \ No newline at end of file diff --git a/app/templates/Gruntfile.js b/app/templates/Gruntfile.js index 6b4bdf9..abbd716 100755 --- a/app/templates/Gruntfile.js +++ b/app/templates/Gruntfile.js @@ -348,7 +348,7 @@ module.exports = function (grunt) { verbose: true }, check: { - src: ['.tmp/assets/stylesheets/screen.css'] + src: ['.tmp/assets/stylesheets/main.css'] } }, csslint: { @@ -383,7 +383,7 @@ module.exports = function (grunt) { grunt.task.run([ 'clean:server', - 'concurrent:server' + 'concurrent:server', 'autoprefixer:server', 'connect:livereload', 'watch' @@ -414,7 +414,7 @@ module.exports = function (grunt) { 'concurrent:dist', 'useminPrepare', 'concat', - 'autoprefixer:dist',> + 'autoprefixer:dist', 'cssmin', 'uglify', 'imagemin', diff --git a/app/templates/_bower.json b/app/templates/_bower.json index f9784b5..7587689 100755 --- a/app/templates/_bower.json +++ b/app/templates/_bower.json @@ -1,6 +1,8 @@ { "name": "<%= _.slugify(appname) %>", - "version": "0.0.2", + "version": "0.1.0", "dependencies": { + "normalize-css": "~2.1.3", + "modernizr": "~2.7.1" } } diff --git a/app/templates/_package.json b/app/templates/_package.json index 105b785..2083b0e 100755 --- a/app/templates/_package.json +++ b/app/templates/_package.json @@ -1,7 +1,7 @@ { "name": "<%= _.slugify(appname) %>", "private": true, - "version": "0.0.2", + "version": "0.1.0", "description": "Yeoman workflow for <%= appname %>", "dependencies": {}, "devDependencies": { diff --git a/app/templates/app/404.html b/app/templates/app/404.html new file mode 100755 index 0000000..0a5afda --- /dev/null +++ b/app/templates/app/404.html @@ -0,0 +1,59 @@ + + +
+ +Sorry, but the page you were trying to view does not exist.
+ + + diff --git a/app/templates/conditional/template/_layouts/default.html b/app/templates/app/_layouts/default.html similarity index 82% rename from app/templates/conditional/template/_layouts/default.html rename to app/templates/app/_layouts/default.html index d2a7a68..0c49017 100755 --- a/app/templates/conditional/template/_layouts/default.html +++ b/app/templates/app/_layouts/default.html @@ -6,10 +6,11 @@