diff --git a/README.md b/README.md index 820f501..e199b70 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ Many personalization settings in `_config.yml`, such as setting your name and si ### Allowing users to leave comments -If you want to enable comments on your site, Beautiful Jekyll supports either the [Disqus](https://disqus.com/) comments plugin, [Facebook](https://developers.facebook.com/docs/plugins/comments) comments, [Staticman](https://staticman.net) or [JustComments](https://just-comments.com). If any of these are set in the configuration file, then all blog posts will have comments turned on by default. To turn off comments on a particular blog post, add `comments: false` to the YAML front matter. If you want to add comments on the bottom of a non-blog page, add `comments: true` to the YAML front matter. +If you want to enable comments on your site, Beautiful Jekyll supports either the [Disqus](https://disqus.com/) comments plugin, [Facebook](https://developers.facebook.com/docs/plugins/comments) comments, or [Staticman](https://staticman.net). If any of these are set in the configuration file, then all blog posts will have comments turned on by default. To turn off comments on a particular blog post, add `comments: false` to the YAML front matter. If you want to add comments on the bottom of a non-blog page, add `comments: true` to the YAML front matter. #### Disqus comments @@ -120,10 +120,6 @@ To use Staticman, you first need to invite `staticmanlab` as a collaborator to y Optional: You may want to configure a webhook to prevent old inactive branches (representing approved comments) from stacking up. You can refer to [Staticman's documentation](https://staticman.net/docs/webhooks) for details. Make sure to input the **Payload URL** according to your chosen `endpoint`. For example, the default `endpoint` is `https://staticman3.herokuapp.com/v3/entry/github/`, so the corresponding **Payload URL** should be `https://staticman3.herokuapp.com/v1/webhook`. -#### JustComments - -To use JustComments you first need to have an account. After you just need to copy the API key to the `just-comments` property in `_config.yml` file. - ### Adding Google Analytics to track page views Beautiful Jekyll lets you easily add Google Analytics to all your pages. This will let you track all sorts of information about visits to your website, such as how many times each page is viewed and where (geographically) your users come from. To add Google Analytics, simply sign up to [Google Analytics](https://www.google.com/analytics/) to obtain your Google Tracking ID, and add this tracking ID to the `google_analytics` parameter in `_config.yml`. @@ -153,7 +149,7 @@ title | Page or blog post title subtitle | Short description of page or blog post that goes under the title tags | List of tags to categorize the post. Separate the tags with commas and place them inside square brackets. Example: `[personal, self help, finance]` bigimg | Include a large full-width image at the top of the page. You can either give the path to a single image, or provide a list of images to cycle through (see [my personal website](https://deanattali.com/) as an example). -comments | If you want do add comments to a specific page, use `comments: true`. Comments are automatically enabled on blog posts; to turn comments off for a specific post, use `comments: false`. Comments only work if you enable at least one provider(diqus, staticman, just-comments) in `_config.yml` file. +comments | If you want do add comments to a specific page, use `comments: true`. Comments are automatically enabled on blog posts; to turn comments off for a specific post, use `comments: false`. Comments only work if you enable at least one provider(Facebook, disqus, staticman) in `_config.yml` file. show-avatar | If you have an avatar configured in the `_config.yml` but you want to turn it off on a specific page, use `show-avatar: false`. If you want to turn it off by default, locate the line `show-avatar: true` in the file `_config.yml` and change the `true` to `false`; then you can selectively turn it on in specific pages using `show-avatar: true`. image | If you want to add a personalized image to your blog post that will show up next to the post's excerpt and on the post itself, use `image: /path/to/img`. share-img | If you want to specify an image to use when sharing the page on Facebook or Twitter, then provide the image's full URL here. diff --git a/_config.yml b/_config.yml index d4a50a8..f8c7dd5 100644 --- a/_config.yml +++ b/_config.yml @@ -120,9 +120,6 @@ url-pretty: "MyWebsite.com" # eg. "deanattali.com/beautiful-jekyll" # Fill in your Disqus shortname (NOT the userid) if you want to support Disqus comments # disqus: "" -# If you want to use JustComments fill with the API Key -#just-comments: "ABCD-EFGH-IJKL" - # To use Facebook Comments, fill in a Facebook App ID # fb_comment_id: "" diff --git a/_includes/just_comments.html b/_includes/just_comments.html deleted file mode 100644 index 5b4f189..0000000 --- a/_includes/just_comments.html +++ /dev/null @@ -1,4 +0,0 @@ -{%- if site.just-comments -%} -
- -{%- endif -%} diff --git a/_layouts/page.html b/_layouts/page.html index b22231c..44a0d8d 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -15,9 +15,6 @@ layout: base {% include fb-comment.html %}
{% include staticman-comments.html %} -
-
- {% include just_comments.html %}
{% endif %} diff --git a/_layouts/post.html b/_layouts/post.html index 038a6ce..3a14ab6 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -73,9 +73,6 @@ layout: base
{% include staticman-comments.html %}
-
- {% include just_comments.html %} -
{% endif %}