add Gravatar part in README, CHANGELOG, and exampleSite #56
This commit is contained in:
parent
5ed13e1740
commit
895bf8d44a
3 changed files with 17 additions and 1 deletions
|
@ -4,8 +4,17 @@ This changelog mainly documented some major changes, updates or fixes (with cred
|
||||||
|
|
||||||
__2018-11__
|
__2018-11__
|
||||||
|
|
||||||
|
* Per PR [#56](https://github.com/htr3n/hyde-hyde/commit/5ed13e17400bbc09a342b60fd50cd9fe3e6f1525), Gravatar pics can be used exclusively to `.Site.Params.authorimage` via the parameter `.Site.Params.social.gravatar`
|
||||||
|
|
||||||
|
* ```toml
|
||||||
|
[params.social]
|
||||||
|
gravatar = "your.email@domain.com"
|
||||||
|
```
|
||||||
|
|
||||||
* Fix Hugo demo (issue [#53](https://github.com/htr3n/hyde-hyde/issues/53))
|
* Fix Hugo demo (issue [#53](https://github.com/htr3n/hyde-hyde/issues/53))
|
||||||
|
|
||||||
* Fix mobile header (PR [#51](https://github.com/htr3n/hyde-hyde/pull/51): credits to [@gamingrobot](https://github.com/gamingrobot))
|
* Fix mobile header (PR [#51](https://github.com/htr3n/hyde-hyde/pull/51): credits to [@gamingrobot](https://github.com/gamingrobot))
|
||||||
|
|
||||||
* Add Utterances comments (PR [#50](https://github.com/htr3n/hyde-hyde/pull/50): credits to [@gamingrobot](https://github.com/gamingrobot))
|
* Add Utterances comments (PR [#50](https://github.com/htr3n/hyde-hyde/pull/50): credits to [@gamingrobot](https://github.com/gamingrobot))
|
||||||
|
|
||||||
__2018-10__
|
__2018-10__
|
||||||
|
|
|
@ -83,6 +83,12 @@ __`Hyde-hyde`__ essentially inherits most of Hyde's [options](https://github.com
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
* Per PR [#56](https://github.com/htr3n/hyde-hyde/commit/5ed13e17400bbc09a342b60fd50cd9fe3e6f1525), Gravatar pics can be used exclusively to `.Site.Params.authorimage` via the parameter `.Site.Params.social.gravatar`
|
||||||
|
|
||||||
|
* ```toml
|
||||||
|
[params.social]
|
||||||
|
gravatar = "your.email@domain.com"
|
||||||
|
```
|
||||||
|
|
||||||
### Customisations
|
### Customisations
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ theme = "hyde-hyde"
|
||||||
#UtterancesRepo = "..." # https://utteranc.es/
|
#UtterancesRepo = "..." # https://utteranc.es/
|
||||||
#UtterancesIssueTerm = "..." # pathname, url, title, og:title
|
#UtterancesIssueTerm = "..." # pathname, url, title, og:title
|
||||||
#UtterancesTheme = "..." # github-light or github-dark
|
#UtterancesTheme = "..." # github-light or github-dark
|
||||||
|
|
||||||
# Table of contents
|
# Table of contents
|
||||||
#toc = none, "hugo", or "tocbot"
|
#toc = none, "hugo", or "tocbot"
|
||||||
|
|
||||||
|
@ -43,6 +43,7 @@ theme = "hyde-hyde"
|
||||||
stackoverflow = "<username>"
|
stackoverflow = "<username>"
|
||||||
telegram = "<username>"
|
telegram = "<username>"
|
||||||
email = "your-email@example.com"
|
email = "your-email@example.com"
|
||||||
|
# gravatar = "your-email@example.com"
|
||||||
|
|
||||||
## Main Menu
|
## Main Menu
|
||||||
[[menu.main]]
|
[[menu.main]]
|
||||||
|
|
Loading…
Reference in a new issue