Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"projectName": "newhavenio.github.io",
"projectOwner": "newhavenio",
"repoType": "github",
"repoHost": "https://github.com",
"files": [
"README.md"
],
"imageSize": 100,
"commit": true,
"contributors": [
{
"login": "sukima",
"name": "Devin Weaver",
"avatar_url": "https://avatars3.githubusercontent.com/u/70075?v=4",
"profile": "http://tritarget.org/",
"contributions": [
"bug",
"code",
"ideas",
"review",
"talk",
"tool",
"eventOrganizing"
]
}
]
}
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## NewHaven.io Jekyll site
[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors)

New Jekyll site for NewHaven.io, using Bootstrap and Jekyll for more collaboration in development and blog writing.

Expand Down Expand Up @@ -29,3 +30,15 @@ $ jekyll serve

This program is licensed under the MIT License. Details can be found in `LICENSE.CODE`.
Blog posts (the textual content of files matching the glob `*.md` in the `posts` directory) are licensed under the Creative Commons Attribution 4.0 License. Details can be found in `LICENSE.CONTENT`.

## Contributors

Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore -->
| [<img src="https://avatars3.githubusercontent.com/u/70075?v=4" width="100px;"/><br /><sub><b>Devin Weaver</b></sub>](http://tritarget.org/)<br />[🐛](https://github.com/newhavenio/newhavenio.github.io/issues?q=author%3Asukima "Bug reports") [💻](https://github.com/newhavenio/newhavenio.github.io/commits?author=sukima "Code") [🤔](#ideas-sukima "Ideas, Planning, & Feedback") [👀](#review-sukima "Reviewed Pull Requests") [📢](#talk-sukima "Talks") [🔧](#tool-sukima "Tools") [📋](#eventOrganizing-sukima "Event Organizing") |
| :---: |
<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"susy": "^2.2.4"
},
"devDependencies": {
"all-contributors-cli": "^4.11.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
Expand All @@ -37,6 +38,8 @@
"webpack": "^3.11.0"
},
"scripts": {
"build": "webpack"
"build": "webpack",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
}
}
Loading