Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 946 Bytes

README.md

File metadata and controls

41 lines (31 loc) · 946 Bytes

Timble - Team

JSON stream & avatars of our team members.

Built to be used in Jekyll with Grunt and Bower.

Used on

Install

Add the following dependency to your bower.json file:

"timble-team": "timble/timble-team"

Run bower install

Grunt contrib copy example (place in your gruntfile)

copy: {
    main: {
        files: [
            {
                expand: true,
                src: ['bower_components/timble-team/images/*.*'],
                dest: 'images/team',
                flatten: true
            },
            {
                expand: true,
                src: ['bower_components/timble-team/team.json'],
                dest: '_data/vendor/timble-team',
                flatten: true
            }
        ]
    }
}