hexo new page "about" ## 此会在 source 文件夹内创建一个 about 文件夹,默认有一个 index.md ## 修改此 index.md,在顶部的 data 下面新增一行 type: "about" ## 其余的可类比
注:type 与文件夹保持一致,about、categories、tags 需要 type
tag 云添加背景色
更改 tag 云配置
1 2 3 4 5 6 7 8
# TagCloud settings for tags page. tagcloud: # All values below are same as default, change them by yourself. min:14# Minimun font size in px max:14# Maxium font size in px start:'#fff'# Start color (hex, rgba, hsla or color keywords) end:'#fff'# End color (hex, rgba, hsla or color keywords) amount:200# Amount of tags, change it if you have more than 200 tags
<scripttype="text/javascript"> var alltags = document.getElementsByClassName('tag-cloud-tags'); var tags = alltags[0].getElementsByTagName('a'); var lastPos = tags.length - 1; for (var i = lastPos; i >= 0; i--) { var r = Math.floor(Math.random() * 75 + 130); var g = Math.floor(Math.random() * 75 + 100); var b = Math.floor(Math.random() * 75 + 80); tags[i].style.background = 'rgb(' + r + ',' + g + ',' + b + ')'; } </script>