forked from remy/mit-license
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for Gravatar. Removed the
seyedi.json
file improperly…
… placed in the project root.
- Loading branch information
Showing
6 changed files
with
28 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,7 @@ | |
</head> | ||
<body> | ||
<article> | ||
{{gravatar}} | ||
<h1>The MIT License (MIT)</h1> | ||
<p>Copyright © {{info}}</p> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ Available fields: | |
* url | ||
* format | ||
* gravatar | ||
* version | ||
* theme | ||
|
||
|
@@ -97,6 +98,21 @@ And if you want your license to appear as plain text, just add the | |
"format": "txt" | ||
} | ||
|
||
### gravatar | ||
|
||
And if you want to show your gravatar, just add the `gravatar` | ||
property (allowed values are `on` or `off`): | ||
|
||
{ | ||
"copyright": "Remy Sharp, http://remysharp.com", | ||
"url": "http://remysharp.com", | ||
"email": "[email protected]", | ||
"gravatar": "on" | ||
} | ||
|
||
*Depends of email property. You need to check the compatibility of the | ||
chosen theme. Currently, only the default theme supports Gravatar.* | ||
|
||
### License version targeting | ||
|
||
License version targeting allows you to link your MIT license to a | ||
|
@@ -141,7 +157,8 @@ Current available themes: | |
|
||
* default - [preview](http://mit-license.org) (by | ||
[@remy](http://github.com/remy) & | ||
[@raphaelbastide](http://github.com/raphaelbastide)) | ||
[@raphaelbastide](http://github.com/raphaelbastide) & | ||
[@evertton](http://github.com/evertton)) | ||
* flesch - [preview](http://jsbin.com/ufefid/3) (by | ||
[@flesch](http://github.com/flesch)) | ||
* afterdark - [preview](http://jsbin.com/ivufon/4) (by [@rmartindotco](http://github.com/rmartindotco)) | ||
|
@@ -191,6 +208,7 @@ Development contributions from: | |
* [batuhanicoz](http://github.com/batuhanicoz) | ||
* [georgebashi](http://github.com/georgebashi) | ||
* [mathiasbynens](http://github.com/mathiasbynens) | ||
* [evertton](http://github.com/evertton) | ||
|
||
### 1. Donate domain years | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,6 @@ | |
"copyright": "Evertton de Lima", | ||
"email": "[email protected]", | ||
"format": "html", | ||
"gravatar": "on", | ||
"theme": "default" | ||
} |