为hexo blog添加版权说明

最近更换了新的Hexo主题hexo-theme-hiker,觉得挺好看的。文章底部没有版权说明,自己动手加上。

新建文件 copyright.ejs

themes\hiker\layout\_partial新建文件copyright.ejs

打开copyright.ejs,添加一下内容。

  • <%= __('copyright.author') %> <%= config.author%>
  • <%= __('copyright.link') %> <%- config.url %>/<%- post.path %>
  • <%= __('copyright.license_title') %> <%= __('copyright.left_license_content') %>CC BY-NC-ND 4.0 <%= __('copyright.right_license_content') %>

修改article.ejs文件

打开themes\hiker\layout\_partial\article.ejs添加一下内容,位置介于donate和comment之间

<% if (!index && theme.donate.enable){ %>
        <%- partial('donate') %>
      <% } %>
       
      <% if (!index && theme.copyright.enable){ %>
      <%- partial('copyright') %>
      <% } %>
      
      <% if (!index && post.comments && (theme.gentie_productKey || theme.duoshuo_shortname || theme.disqus_shortname || theme.uyan_uid || theme.wumii || theme.livere_shortname)){ %>
        <%- partial('comment') %>
      <% } %>

修改 article.styl

修改themes\hiker\source\css\_partial\article.styl,在末端添加以下内容。

.post-copyright {
    margin: 2em 0 0;
    padding: 0.5em 1em;
    border-left: 3px solid #FF1700;
    background-color: #F9F9F9;
    list-style: none;
}

.post-copyright li {
    line-height: 30px;
}

修改语言文件

在themes\hiker\languages中,找到你应用的语言文件,例如zh-TW,打开并添加以下内容。

copyright:
    author: "作者: "
    link: "文章连结: "
    license_title: "版权声明: "
    left_license_content: "本网志所有文章除特别声明外,均采用 "
    right_license_content: "许可协议。转载请注明出处!"

修改主题设置文件

打开themes\hiker\_config.yml,添加以下内容。

#版权信息
copyright:
    enable: true

最后当然是 hexo clean && hexo g && hexo d 就可以看到结果了

为hexo blog添加版权说明_第1张图片
image

资料参考

为Hexo icarus添加版权说明

你可能感兴趣的:(为hexo blog添加版权说明)