https://github.com/zessx/jekyll-tagpage
Jekyll tag page generator
https://github.com/zessx/jekyll-tagpage
Last synced: 24 days ago
JSON representation
Jekyll tag page generator
- Host: GitHub
- URL: https://github.com/zessx/jekyll-tagpage
- Owner: zessx
- License: mit
- Created: 2015-05-18T13:40:28.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-07T22:41:19.000Z (almost 11 years ago)
- Last Synced: 2025-02-26T14:24:11.994Z (over 1 year ago)
- Language: Ruby
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jekyll-tagpage
Jekyll tag page generator
## Installation
Just copy both `_layouts` and `_plugins` folder into your Jekyll project.
## Usage
Add tags to your posts using the `tags` predefined variable:
---
layout: post
title: "Lorem ipsum post"
date: 2015-05-18
tags:
- foo
- bar
---
You can also use a compressed version:
---
layout: post
title: "Lorem ipsum post"
date: 2015-05-18
tags: [foo, bar, baz]
---
The plugin will generate this structure:
_site/
lorem-ipsum-post/
tag/
foo/
bar/
## Customization
jekyll-tagpage comes with 3 options, that you can override in your `_config.yml` file:
- `tag_dir`: tag pages' directory (default: `tag`)
- `tag_title_prefix`: prefix for the tag page's title (default: empty)
- `tag_title_suffix`: suffix for the tag page's title (default: empty)