* 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
* 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
The main config was properly updated with the google-gtag
feature commit (79d0b75683), but was
removed, possibly by bad merge, with an unrelated commit
(bac26e96b2) two days later.
The docs and test configs appear to have never received the initial
google-gtag update.
* 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
* 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
* Add link for testing purposes
* Fix excerpt link positioning in Algolia search results
* Fix Algolia search input color
* Update CHANGELOG and history
Fixes#1903
* Add jekyll-include-cache plugin
* Cache "static" includes to improve build performance
* Update CHANGELOG and history
"Static" refers to those includes that don't rely on data passed from the page content.
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
* Add `{{ content }}` to `home` layout
Allow the author to add content which will appear above the list of
recent posts. This also allows the `home` layout to be extended.
Add text to index.html in tests to indicate that the content appears in
the correct spot.
* Add paragraph markup
Since this is a HTML file, proper paragraph markup is needed.