我就是饿死,死外面,从这跳下去,也不会吃你们一点东西! //真香
这个博客大概经历了 Wordpress -> Hexo(VPS) -> Hexo(Git Page) -> Wordpress -> Hexo(VPS) 的流程,其实我很喜欢 Wordpress,多年的使用经验也让我对它产生了很强的依赖性,放弃它也变得更加困难。
Wordpress 是一个非常好的博客框架,使用方便,社区维护力量强大,插件功能丰富,安全性也很好。但是正因为需要不断地更新维护,无论是安全性还是功能性的更新,都让我感到疲惫,所以选择了纯静态的博客,省心。
以前的博文看心情恢复吧,计划中的文章也有三四条了,不知道什么时候能写完。表述能力赶不上思想产出速度的悲伤。
记录一下博客配置方面的内容,大多和网上搜到的教程相同,不同之处我已指出
插件安装
npm install xxxxx –save
- hexo-generator-feed
- hexo-generator-sitemap
- hexo-generator-baidu-sitemap
- hexo-leancloud-counter-security
- hexo-tag-aplayer
个性相关的不赘述,只记录 可能 通用的配置
Google Analytics
之前一直使用 cnzz,后来 cnzz 被友盟合并也没有太大的影响,继续使用,但是现在需要验证手机,就有点反感了。现在改用了 Google Analytics,不知道它对国内访客的影响会不会很大。
NexT 主题的_config.yml
里面包含了相关内容,直接添加 ID 即可
SEO
NexT 主题的_config.yml
里面有 seo 选项,我并不是完全清楚它的作用,所以没开,这里只简述 sitemap 对于 seo 的影响。安装两个 sitemap 相关插件之后,到博客的_config.yml
配置相关地址
1 2 3 4
| sitemap: path: sitemap.xml baidusitemap: path: baidu_sitemap.xml
|
在博客的source
目录下添加robots.txt
,内容根据实际需求进行修改
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| User-agent: * Allow: / Allow: /archives/ Allow: /categories/ Allow: /tags/ Allow: /about/ Disallow: /vendors/ Disallow: /js/ Disallow: /css/ Disallow: /fonts/ Disallow: /fancybox/
Sitemap: https://milktea.info/sitemap.xml Sitemap: https://milktea.info/baidu_sitemap.xml
|
Google Site Verification
因为我先给博客配置的 Google Adsense,所以站点验证步骤省略了
Google Adsense
在 NexT 主题的layout/_custom
目录下添加google_adsense.ejs
,把相关的 js 代码粘贴进去,然后修改layout/_custom/header.swig
,把它包含进去。
1
| {% include 'google_adsense.ejs' %}
|
鼠标点击时出现飘动的心
这里和网上搜到的步骤不同
不推荐修改主题的source
目录,对于主题的个性化修改功能应该在custom
目录下进行
在 NexT 主题的layout/_custom
目录下添加love.ejs
,粘贴以下代码,然后修改layout/_custom/header.swig
,把它包含进去(方法同上)。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| <script> !function (e, t, a) { function n() { c(".heart{width: 10px;height: 10px;position: fixed;background: #f00;transform: rotate(45deg);-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);}.heart:after,.heart:before{content: '';width: inherit;height: inherit;background: inherit;border-radius: 50%;-webkit-border-radius: 50%;-moz-border-radius: 50%;position: fixed;}.heart:after{top: -5px;}.heart:before{left: -5px;}"), o(), r(); } function r() { for (var e = 0; e < d.length; e++) d[e].alpha <= 0 ? (t.body.removeChild(d[e].el), d.splice(e, 1)) : (d[e].y--, d[e].scale += 0.004, d[e].alpha -= 0.013, d[e].el.style.cssText = 'left:' + d[e].x + 'px;top:' + d[e].y + 'px;opacity:' + d[e].alpha + ';transform:scale(' + d[e].scale + ',' + d[e].scale + ') rotate(45deg);background:' + d[e].color + ';z-index:99999'); requestAnimationFrame(r); } function o() { var t = 'function' == typeof e.onclick && e.onclick; e.onclick = function (e) { t && t(), i(e); }; } function i(e) { var a = t.createElement('div'); a.className = 'heart', d.push({ el: a, x: e.clientX - 5, y: e.clientY - 5, scale: 1, alpha: 1, color: s() }), t.body.appendChild(a); } function c(e) { var a = t.createElement('style'); a.type = 'text/css'; try { a.appendChild(t.createTextNode(e)); } catch (t) { a.styleSheet.cssText = e; } t.getElementsByTagName('head')[0].appendChild(a); } function s() { return 'rgb(' + ~~(255 * Math.random()) + ',' + ~~(255 * Math.random()) + ',' + ~~(255 * Math.random()) + ')'; } var d = []; e.requestAnimationFrame = function () { return e.requestAnimationFrame || e.webkitRequestAnimationFrame || e.mozRequestAnimationFrame || e.oRequestAnimationFrame || e.msRequestAnimationFrame || function (e) { setTimeout(e, 1000 / 60); }; }(), n(); }(window, document); </script>
|