Skip to content

Commit

Permalink
update version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bootflat committed Mar 6, 2014
1 parent 37a1d24 commit 267f353
Show file tree
Hide file tree
Showing 75 changed files with 9,368 additions and 2 deletions.
58 changes: 58 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
module.exports = function(grunt) {

grunt.initConfig({
jshint: {
files: ['Gruntfile.js', 'js/**/*.js'],
options: {
jshintrc: '.jshintrc'
}
},
uglify: {
dist: {
files: {
'js/site.min.js': [
'js/jquery-1.10.1.min.js',
'js/bootstrap.min.js',
'js/holder.js',
'bootflat/js/icheck.min.js',
'bootflat/js/jquery.collapse.js',
'js/application.js'
]
}
}
},
cssmin: {
dist: {
files: {
'css/site.min.css': [
'css/bootstrap.min.css',
'bootflat/css/bootflat.css',
'css/site.css'
],
'bootflat/css/bootflat.min.css': 'bootflat/css/bootflat.css'
}
}
},
sass: {
dist: {
files: {
'bootflat/css/bootflat.css': 'bootflat/scss/bootflat.scss'
},
options: {
style: 'expanded',
sourcemap: 'true'
}
}
},
pkg: grunt.file.readJSON('package.json')
});

require('load-grunt-tasks')(grunt);

grunt.registerTask('default', [
'jshint',
'sass',
'cssmin',
'uglify'
]);
};
49 changes: 47 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,47 @@
bootflat.github.io
==================
# What is Bootflat?

BOOTFLAT is an open source Flat UI KIT based on Twitter Bootstrap 3.1.0 css framework. It provides a faster, easier and less repetitive way for web developers to create elegant web app.

Note: Compatible Browsers: IE8, IE9, IE10, Firefox, Safari, Opera, Chrome.

Thanks for supporting our website and enjoy!

## Feature:

### 1. Bootstrap 3.1.0
Bootsflat is based on Bootstrap 3.1.0 the sleek, intuitive, and powerful mobile-first front-end framework for faster and easier web development.

### 2. HTML5 & CSS3
First use HTML5 and CSS3 to build the components. the pages use header, nav, section to build the layout. this project have a good color scheme, can easy to change.

### 3. Lightweight
We only choose the lightweight plugins, but with rich functions. we use tiny components, css and js size is first consideration.

### 4. Mobile first
Bootflat is fully responsive, but it's mobile first. it provide the off screen nav, and almost all the widgets are copatible to all the screen sizes.

## Manual Start
Install with [bower](http://bower.io/)?

`bower install angulargap`

The source files are in the `bootflat/` folder. You can just grab the `bootflat/css/`, `bootflat/scss/`,`bootflat/js/` and `bootflat/img/` folders and you'll be good to go.

## Changelog:

2014/3/6 version 2.0.0

## Links:

+ [AngularGap Home page](http://bootflat.github.io/)
+ [AngularGap Documentation page](http://bootflat.github.io/documentation.html)

## Community

+ Follow [@flathemes on Twitter](https://twitter.com/flathemes).
+ Have a feature request or find a bug? [Submit an issue](https://github.com/angulargap/angulargap.github.io/issues).

## LICENSE

Bootflat is licensed under the MIT Open Source license. For more information, see the LICENSE file in this repository.

Binary file added angularicons/angularicons.eot
Binary file not shown.
308 changes: 308 additions & 0 deletions angularicons/angularicons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added angularicons/angularicons.ttf
Binary file not shown.
Binary file added angularicons/angularicons.woff
Binary file not shown.
Loading

0 comments on commit 267f353

Please sign in to comment.