Skip to content

Commit

Permalink
CSS側のHonoka固有のコードを削除
Browse files Browse the repository at this point in the history
・バナー部分のウェブサイトの表記等に関してもpackage.jsonから取ってくるように
  • Loading branch information
windyakin committed Jul 15, 2015
1 parent 72c2f4e commit 1b08713
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ module.exports = function(grunt) {
{
from: '{%version%}',
to: pkg.version
},
{
from: '{%website%}',
to: pkg.website
},
{
from: '{%year%}',
to: new Date().getFullYear()
},
{
from: '{%author%}',
to: pkg.author
}
]
},
Expand All @@ -32,6 +44,16 @@ module.exports = function(grunt) {
to: 'Based on Bootstrap v$1\n */\n'
}
]
},
basedon: {
src: ['dist/css/bootstrap.**css'],
dest: 'dist/css/',
replacements: [
{
from: '{%version%}',
to: pkg.version
}
]
}
},
// cssmin
Expand Down
4 changes: 2 additions & 2 deletions src/compass/css/bootstrap.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

@import "honoka/variables";
/*!
* Website: http://honokak.osaka/
* Copyright 2015 windyakin
* Honoka v{%version%}
* Website: {%website%}
* Copyright {%year%} {%author%}
* The MIT License
* Based on Bootstrap v#{$bootstrap-version}
*/
Expand Down

0 comments on commit 1b08713

Please sign in to comment.