categores list and cloud
Easy output categores cloud and list.
.
├── plugins
│ ├── category_generator.rb
│ ├── category_list.rb
│ └── category_tag_cloud.rb
└── source
├── _include
│ └── custom
│ └── asides
│ ├── category_cloud.html
│ └── category_list.html
└── javascripts
└── tagcloud.swf
{% category_cloud [counter:true] %}
{% category_list [counter:true] %}
In some template files, you can add the following markups.
<section>
<h1>Category List</h1>
<ul id="categories">{% category_list %}</ul>
</section>
<section>
<h1>Category Cloud</h1>
<span id="Category-cloud">{% category_cloud bgcolor:#f2f2f2 %}</span>
</section>
Be sure to insert above template files into default_asides array in _config.yml.