Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 964 Bytes

categories.md

File metadata and controls

34 lines (30 loc) · 964 Bytes
title layout
Categories
page_without_aside
{% for cat in site.categories %} {{ cat[0] }} ({{ cat[1].size }}) {% endfor %}
    {% for cat in site.categories %}
  • {{ cat[0] }}
  • {% for post in cat[1] %}
  • {{ post.date | date:"%Y-%m-%d" }} {{ post.title }}
  • {% endfor %} {% endfor %}
<script src="http://chentc.info/blog/media/js/jquery.tagcloud.js" type="text/javascript" charset="utf-8"></script> <script language="javascript"> $.fn.tagcloud.defaults = { size: {start: 1, end: 1, unit: 'em'}, color: {start: '#f8e0e6', end: '#ff3333'} }; $(function () { $('#tag_cloud a').tagcloud(); }); </script>