jekyll-tagging
is a plugin that enables better tag support in Jekyll sites.
Gemfile
gem 'jekyll-tagging`
_config.yml
filetag_page_layout: tags
tag_page_dir: tags
tags/index.html
with the following content---
title: Tags
layout: tag_index
---
To assign tags to a post, include them in the front matter
---
title: My Sample Post
tags: [jekyll, tutorial, plugins]
---