个性化hexo博客,添加评论系统,分享,友情链接功能并优化seo

个人博客地址:http://lx.nextdev.cn

前言

上一篇文章我们用 coding page + hexo 搭建了个人博客,这篇文章我们将对博客进行修改

注意,本篇文章一切修改基于hexo博客的next主题

评论系统

网易云跟贴
  • 网易云跟贴
  • 开始使用
    注册一个账号,然后打开获取代码WEB代码,找到productKey
个性化hexo博客,添加评论系统,分享,友情链接功能并优化seo_第1张图片
官网
  • 打开主题配置文件,找到 Gentie productKey,修改为以下代码:
# Gentie productKey
gentie_productKey: 在这里写key
  • OK!

分享系统

个性化hexo博客,添加评论系统,分享,友情链接功能并优化seo_第2张图片
ShareSDK
  • ShareSDK
  • 开始使用
    注册一个账号,然后打开后台,找到appkey
个性化hexo博客,添加评论系统,分享,友情链接功能并优化seo_第3张图片
appkey
  • 打开
博客\themes\next\layout\_partials\share
  • 新建一个文件名为 sharesdk.swig ,并输入以下代码:

                            
分享
  • 打开:
LX-Blog\themes\next\layout\post.swig
  • 将以下代码:
{% if theme.jiathis %} {% include '_partials/share/jiathis.swig' %} {% elseif theme.baidushare %} {% include '_partials/share/baidushare.swig' %} {% elseif theme.add_this_id %} {% include '_partials/share/add-this.swig' %} {% elseif theme.duoshuo_shortname and theme.duoshuo_share %} {% include '_partials/share/duoshuo_share.swig' %} {% endif %}
  • 改成:
{% if theme.jiathis %} {% include '_partials/share/jiathis.swig' %} {% elseif theme.baidushare %} {% include '_partials/share/baidushare.swig' %} {% elseif theme.add_this_id %} {% include '_partials/share/add-this.swig' %} {% elseif theme.duoshuo_shortname and theme.duoshuo_share %} {% include '_partials/share/duoshuo_share.swig' %} {% elseif theme.sharesdk %} {% include '_partials/share/sharesdk.swig' %} {% endif %}
  • 打开 主题配置文件,添加以下代码:
sharesdk: true
shareSDKappkey: 你的appkey

添加友情链接

  • 打开 主题配置文件 ,找到 Blog rolls,将代码改成:
links_title: 友情链接
links_layout: inline
links: 
  凌霄的博客: http://lx.nextdev.cn/

完成!


欢迎评论

你可能感兴趣的:(个性化hexo博客,添加评论系统,分享,友情链接功能并优化seo)