Hexo 站内搜索路径

Hexo 是一个快速、简洁且高效的博客框架。Hexo 使用 Markdown(或其他渲染引擎)解析文章,在几秒内,即可利用靓丽的主题生成静态网页。https://hexo.io/zh-cn/ 这里是他的中文文档,无论是结合 Github、Gitee 或者是在私人的云端都可以快速部署,非常高效快捷。为了更好的seo优化,使用pure主题给每一个post页面添加keywords 关键字。

1
2
3
4
5
6
function gotoLink($item) {
if ($item && $item.length) {
// location.href = "/" + $item.attr('data-url'); 修改为下边代码
location.href = $item[0].baseURI + $item.attr('data-url').substring(2);
}
}