diff --git a/README.md b/README.md index 2bc7016..d0f4d0a 100644 --- a/README.md +++ b/README.md @@ -148,6 +148,8 @@ To set up a GitHub Project page, simply fork this repository into a branch calle I wrote [a blog post](http://deanattali.com/2015/03/12/beautiful-jekyll-how-to-build-a-site-in-minutes/) describing some more advanced features that I used in my website that are applicable to any Jekyll site. It describes how I used a custom URL for my site (deanattali.com instead of daattali.github.io), how to add a Google-powered search into your site, and provides a few more details about having an RSS feed. +Additionally, if you choose to deploy Jekyll on your own server (such as a DigitalOcean server), you can tell Jekyll to automatically categorize your blog posts by tags. You just need to set `link-tags: true` in `_config.yml`. Jekyll will then generate a new page for each unique tag which lists all of the posts that belong to that tag. + ### Featured users (success stories!) To my huge surprise, Beautiful Jekyll has been used in over 500 websites in its first 6 months alone! Here is a hand-picked selection of some websites that use Beautiful Jekyll. diff --git a/_config.yml b/_config.yml index 4f94365..32e098b 100644 --- a/_config.yml +++ b/_config.yml @@ -97,6 +97,9 @@ defaults: layout: "page" show-avatar: true +# Tags (not recommended if you are deploying via GitHub pages, see README.md) +link-tags: false + # Exclude these files from production site exclude: - Gemfile diff --git a/_layouts/post.html b/_layouts/post.html index a86e279..0e8a641 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -8,7 +8,19 @@ layout: base