From c770bd97a889c16dd010878d0de5c6a5f406a6f8 Mon Sep 17 00:00:00 2001 From: Sondre Nilsen Date: Fri, 1 Apr 2016 03:33:41 +0200 Subject: [PATCH] Remove Octopress --- generators/jekyll/index.js | 10 +++++----- generators/jekyll/templates/Gemfile | 3 --- generators/jekyll/templates/app/_templates/draft | 4 ---- generators/jekyll/templates/app/_templates/page | 4 ---- generators/jekyll/templates/app/_templates/post | 5 ----- 5 files changed, 5 insertions(+), 21 deletions(-) delete mode 100644 generators/jekyll/templates/app/_templates/draft delete mode 100644 generators/jekyll/templates/app/_templates/page delete mode 100644 generators/jekyll/templates/app/_templates/post diff --git a/generators/jekyll/index.js b/generators/jekyll/index.js index 87b6b41..9746e64 100644 --- a/generators/jekyll/index.js +++ b/generators/jekyll/index.js @@ -90,6 +90,11 @@ module.exports = generators.Base.extend({ } ); + this.fs.copyTpl( + this.templatePath('config.build.yml'), + this.destinationPath('_config.build.yml') + ); + this.fs.copyTpl( this.templatePath('humans.txt'), this.destinationPath('src/humans.txt'), @@ -99,11 +104,6 @@ module.exports = generators.Base.extend({ } ); - this.fs.copyTpl( - this.templatePath('config.build.yml'), - this.destinationPath('_config.build.yml') - ); - this.fs.copy( this.templatePath('app'), this.destinationPath('src') diff --git a/generators/jekyll/templates/Gemfile b/generators/jekyll/templates/Gemfile index 7a0f60c..7f0fc03 100644 --- a/generators/jekyll/templates/Gemfile +++ b/generators/jekyll/templates/Gemfile @@ -11,6 +11,3 @@ gem 'jekyll-gist' gem 'jekyll-paginate' gem 'jekyll-sitemap' gem 'jekyll-seo-tag' - -# octopress -gem 'octopress', '~> 3.0' diff --git a/generators/jekyll/templates/app/_templates/draft b/generators/jekyll/templates/app/_templates/draft deleted file mode 100644 index 26041ea..0000000 --- a/generators/jekyll/templates/app/_templates/draft +++ /dev/null @@ -1,4 +0,0 @@ ---- -layout: {{ layout }} -title: "{{ title }}" ---- diff --git a/generators/jekyll/templates/app/_templates/page b/generators/jekyll/templates/app/_templates/page deleted file mode 100644 index 26041ea..0000000 --- a/generators/jekyll/templates/app/_templates/page +++ /dev/null @@ -1,4 +0,0 @@ ---- -layout: {{ layout }} -title: "{{ title }}" ---- diff --git a/generators/jekyll/templates/app/_templates/post b/generators/jekyll/templates/app/_templates/post deleted file mode 100644 index fa5e2f8..0000000 --- a/generators/jekyll/templates/app/_templates/post +++ /dev/null @@ -1,5 +0,0 @@ ---- -layout: {{ layout }} -title: "{{ title }}" -date: {{ date }} ----