* Fix broken link
Link to Bing Webmaster Tools was broken.
* Fix broken link
Link to Open Graph debug tool was broken.
* Add Baidu site verification (mmistakes#2830)
Added `baidu_site_verification` to `_config.yml`
* Add script in same style as utterances
But adjusted for the various filed differences
* Add initial script
* Add default settings
* Update changelog
* Add feature to readme
* Add comments html
* add comment provider include
* update config in docs
* Add URL for additional reference
* docs for giscus comments
* Unrelated bugfix: add missing version separator
So that things match the "history" doc.
* add space
* update history doc
* update about doc
* add to test config yaml
* remove unnecessary / incorrect async attribute
* probably should pass the right config paths
* lowercase the repo name
* Update docs to address '1' and '0' for reactions_enabled
Figured I'd match the giscus format rather than convert a boolean to an int there.
* update two additional docs
* docs wording fix
* Updated Staticman docs
* remove any ref to official public instance in docs
* remove fallback instance for staticman v2
left staticman v1 untouched as I dunno how to deal with that
* add a "hide" value in config for atom
* Update footer to use param
* update header to use param
* Update docs to note configuration
* undo formatting
* use unless syntax
* unless syntax and indentation
* indentation
* Rename include
* Add grid view test pages
* Rename `.post__meta-sep` and use CSS to add line break
* Improve collection grid archive
* Improve page grid archive
* Enable `grid`
* Don't show date icon if there is no `date` value
* Add blank line at EOF
* Add space
* Wrap date and reading time in named `span` elements
* add date to read-time.html
* add option for show_date, dynamic icon style
* change read-time to post__meta
* cleanup post__metal.html
* cleanup post__meta include variables
* put date before read time
* remove space in include variable
* allow customisation of post__meta separator
* add some documentation
* oops fix typo derp
* add post date image
* change page meta separator customisation to CSS
Google+ is being shutdown on April 2, 2019. Social sharing buttong, comment provider, and author link configs have been removed from the theme.
ref: https://support.google.com/plus/answer/9195133
* Add logo and title customization to the masthead
* Adjust config description
* Add test site logo to `/test`
* Document `site.logo` and `site.masthead_title`
* Update CHANGELOG and history
Deprecate hardcoded footer links in favor or new `footer.links` array for any link and in any order. All of Font Awesome's icons are available for use.
```
footer:
links:
- label: "Twitter"
icon: "fab fa-fw fa-twitter-square"
url: "https://twitter.com/username"
- label: "GitHub"
icon: "fab fa-fw fa-github"
url: "https://github.com/username"
- label: "Instagram"
icon: "fab fa-fw fa-instagram"
url: "https://instagram.com/username"
```
Deprecate social networking links in `_config.yml` in favor or new `author.links` array for any link and in any order. All of Font Awesome's icons are available for use.
```
author:
links:
- label: "Your Website"
icon: "fas fa-fw fa-link"
url: "https://your-site.com"
- label: "Twitter"
icon: "fab fa-fw fa-twitter-square"
url: "https://twitter.com/username"
- label: "GitHub"
icon: "fab fa-fw fa-github"
url: "https://github.com/username"
- label: "Instagram"
icon: "fab fa-fw fa-instagram"
url: "https://instagram.com/username"
```
Fixes#1581