Easy output tag cloud and category list.
.
├─ plugins/
│ └── category_list.rb
└─ source/
└─ _includes/
└─ custom/
└─ asides/
├─ category_list.html
└─ category_cloud.html
{% category_cloud [counter:true] %}
{% category_list [counter:true] %}
In some template files, you can add the following markups.
<section>
<h1>Tag Cloud</h1>
<span id="tag-cloud">{% category_cloud %}</span>
</section>
<section>
<h1>Categories</h1>
<ul id="category-list">{% category_list counter:true %}</ul>
</section>
支持 utf-8,使用 category_cloud
替换 tag_cloud
,
以避免和 真正的标签云 冲突。
Be sure to insert above template files into default_asides
array in _config.yml
.
And also you can define styles for 'tag-cloud' or 'category-list' in a .scss
file.
(ex: sass/custom/_styles.scss
)
Distributed under the MIT License.