You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hugo-theme-mini/layouts/partials/tagcloud.html

12 lines
265 B
HTML

<script src="{{ .Site.BaseURL }}js/jquery.tagcloud.js"></script>
<script type="text/javascript">
$.fn.tagcloud.defaults = {
size: {start: 10, end: 16, unit: 'pt'},
color: {start: '#bbb', end: '#f52'}
};
$(function () {
$('#tags a').tagcloud();
});
</script>