* Add rel=me to author profile links
* Add h-card Microformats markup
* Add h-entry microformat markup
* Fix missing anchor tag
* Fix h-entry microformat markup on single template
* Use minimal subset of Microformat elements
* Move dt-published to `page__date.html` and remove dt-updated
* Remove "author" and "summary"
Leaves "url" as a hidden element
* Add page link to h1 tag
The h1 tag now contains the Schema-org `url` itemprop and the
Microformats `url` class in an anchor tag. The anchor tag is styled to
not look like a link.
* Put author 'u-url' on author__name h3
This also puts the same `{{ author.home | default: '/' | absolute_url }}`
construct on `author__avatar` to remove the Jekyll `author.home`
conditional.
Also addresses SCSS text color error.
* Use relative_url and absolute_url where possible
Drops the `contains "://"` check, adopt Jekyll 3.7
Ref: https://github.com/mmistakes/minimal-mistakes/pull/2385#issuecomment-579882236
* One more unneeded {% assign %}
* Remove one more assign as noted by mmistakes
* Consolidate 4 more captures
* Consolidate an extra assign on "active" class
* enable markdown in author bio
added the markdownify liquid filter
* Add markdown to bio in _config.yml
* add markdown to bio in /test/ _config.yml
* Change <p> to <div>
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
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
Where it makes sense replace asset paths and navigation related paths with `relative_url` filter.
Leave SEO related `<head>` elements and social sharing links as `absolute_url`.
Fixes#1588
* Fix canonical URL
* Fix next/previous page paths
* Group meta types together
* Fix twitter:creator conditional
* Allow `author` to accept an object or string
* Reduce white-space
* Add "website" as default `og:type`
* Add `article:modified_time`
* Show `article:modified_time` on `article` only
Fixes#289