Skip to content

timble/timble-team

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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
            }
        ]
    }
}