diff --git a/README.md b/README.md index c201b17..2dda4a2 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,14 @@ so-simple-theme/ Most of the variables found here are used in the .html files found in `_includes` if you need to add or remove anything. A good place to start would be to change the title, tagline, description, and url of your site. When working locally comment out `url` or else you will get a bunch of broken links because they are absolute and prefixed with `{{ site.url }}` in the various `_includes` and `_layouts`. Just remember to uncomment `url` when building for deployment or pushing to **gh-pages**... +#### Disqus Comments + +Create a [Disqus](http://disqus.com) account and change `disqus_shortname` in `_config.yml` to the Disqus *shortname* you just setup. To enable commenting on a post, add the following to its front matter: + +``` yaml +comments: true +``` + #### Owner/Author Information Change your name, and avatar photo (200x200 pixels or larger), email, and social networking urls. If you want to link to an external image on Gravatar or something similiar you'll need to edit the path in `head.html` since it assumes it is located in `/images`. @@ -149,8 +157,8 @@ To make things easier I use LESS to build So Simple Theme's stylesheets. If you // -------------------------------------------------- @body-color : #ebebeb; @text-color : #333; -@base-color : #343434; -@comp-color : spin(@base-color, 180); +@base-color : #343434; +@comp-color : spin(@base-color, 180); @border-color : @base-color; @white : #fff; @black : #000; diff --git a/about.md b/about.md index 7ba1c14..a14eab2 100644 --- a/about.md +++ b/about.md @@ -16,6 +16,7 @@ Looking for a simple, responsive, theme for your Jekyll powered blog? Well look * Minimal embellishments and subtle animations. * Readable typography to make your words shine. * Support for large images to call out your favorite posts. +* Disqus comments if you choose to enable. * Simple and clear permalink structure[^1]. * Tags for [Open Graph](https://developers.facebook.com/docs/opengraph/) and [Twitter Cards](https://dev.twitter.com/docs/cards) for a better social sharing experience. diff --git a/theme-setup.md b/theme-setup.md index e883707..e74ffdb 100644 --- a/theme-setup.md +++ b/theme-setup.md @@ -48,6 +48,14 @@ so-simple-theme/ Most of the variables found here are used in the .html files found in `_includes` if you need to add or remove anything. A good place to start would be to change the title, tagline, description, and url of your site. When working locally comment out `url`[^1] or else you will get a bunch of broken links because they are absolute and prefixed with `{{ "{{ site.url " }}}}` in the various `_includes` and `_layouts`. Just remember to uncomment `url` when building for deployment or pushing to **gh-pages**... +#### Disqus Comments + +Create a [Disqus](http://disqus.com) account and change `disqus_shortname` in `_config.yml` to the Disqus *shortname* you just setup. To enable commenting on a post, add the following to its front matter: + +{% highlight yaml %} +comments: true +{% endhighlight %} + #### Owner/Author Information Change your name, and avatar photo (200x200 pixels or larger), email, and social networking urls. If you want to link to an external image on Gravatar or something similiar you'll need to edit the path in `head.html` since it assumes it is located in `/images`.