| title | layout |
|---|---|
tag cloud |
page |
{% for tag in site.tags %}
{{ tag[0] }}
{% endfor %}
| #OS junk files | |
| [Tt]humbs.db | |
| *.DS_Store | |
| #Visual Studio files | |
| *.[Oo]bj | |
| *.user | |
| *.aps | |
| *.pch | |
| *.vspscc |
| (function($) { | |
| $.fn.tagcloud = function(options) { | |
| var opts = $.extend({}, $.fn.tagcloud.defaults, options); | |
| tagWeights = this.map(function(){ | |
| return $(this).attr("rel"); | |
| }); | |
| tagWeights = jQuery.makeArray(tagWeights).sort(compareWeights); | |
| lowest = tagWeights[0]; | |
| highest = tagWeights.pop(); |