381a41bd by bootflat

update readme

1 parent 66655446
......@@ -2,25 +2,34 @@ module.exports = function(grunt) {
grunt.initConfig({
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n',
sourceMap: true,
sourceMapIncludeSources: true
},
dist: {
files: {
'js/site.min.js': [
'js/jquery-1.10.1.min.js',
'js/bootstrap.min.js',
'js/jquery-1.10.1.min.js',
'js/bootstrap.min.js',
'bootflat/js/icheck.min.js',
'js/application.js'
]
]
}
}
},
cssmin: {
options: {
keepSpecialComments: 0,
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n',
},
dist: {
files: {
'css/site.min.css': [
'css/bootstrap.min.css',
'bootflat/css/bootflat.css',
'css/site.css'
],
'css/bootstrap.min.css',
'bootflat/css/bootflat.css',
'css/site.css'
],
'bootflat/css/bootflat.min.css': 'bootflat/css/bootflat.css'
}
}
......@@ -30,7 +39,7 @@ module.exports = function(grunt) {
files: {
'bootflat/css/bootflat.css': 'bootflat/scss/bootflat.scss'
},
options: {
options: {
style: 'expanded',
sourcemap: 'true'
}
......
______ _______ _______ _________ _______ _ _______ _________
( ___ \ ( ___ )( ___ )\__ __/( ____ \( \ ( ___ )\__ __/
| ( ) )| ( ) || ( ) | ) ( | ( \/| ( | ( ) | ) (
| (__/ / | | | || | | | | | | (__ | | | (___) | | |
| __ ( | | | || | | | | | | __) | | | ___ | | |
| ( \ \ | | | || | | | | | | ( | | | ( ) | | |
| )___) )| (___) || (___) | | | | ) | (____/\| ) ( | | |
|/ \___/ (_______)(_______) )_( |/ (_______/|/ \| )_(
========================================================================
# What is Bootflat?
BOOTFLAT is an open source Flat UI KIT based on Bootstrap 3.1.0 CSS framework. It provides a faster, easier and less repetitive way for web developers to create elegant web apps.
......@@ -27,7 +38,7 @@ Bootflat's components are built with HTML5 and CSS3. The pages use `header`, `na
Bootflat uses lightweight high-function plugins for maximum performance, keeping CSS and JS file sizes down.
### 4. Mobile first
Bootflat is fully responsive, built for mobile-first in mind. It provides off screen navigation, and almost all the widgets are compatible with all screen sizes.
Bootflat is fully responsive, built for mobile-first in mind. It provides off screen navigation, and almost all the widgets are compatible with all screen sizes.
## Manual Start
Install with [bower](http://bower.io/)?
......@@ -54,4 +65,3 @@ The source files are in the `bootflat/` folder. You can just grab the `bootflat/
## LICENSE
Bootflat is licensed under the MIT Open Source license. For more information, please see the LICENSE file in this repository.
......