美文网首页
Hexo博客NexT主题美化之自定义文章底部版权声明

Hexo博客NexT主题美化之自定义文章底部版权声明

作者: 潘高PG | 来源:发表于2019-03-05 10:02 被阅读0次

    前言

    更多效果展示,请访问我的 个人博客


    效果图:

    image

    教程:

    1. 在目录 themes/next/layout/_macro/ 下添加 my-copyright.swig ,内容如下:
    {% if page.copyright %}
    <div class="my_post_copyright">
      <script src="//cdn.bootcss.com/clipboard.js/1.5.10/clipboard.min.js"></script>
      
      <!-- JS库 sweetalert 可修改路径 -->
      <script type="text/javascript" src="http://jslibs.wuxubj.cn/sweetalert_mini/jquery-1.7.1.min.js"></script>
      <script src="http://jslibs.wuxubj.cn/sweetalert_mini/sweetalert.min.js"></script>
      <link rel="stylesheet" type="text/css" href="http://jslibs.wuxubj.cn/sweetalert_mini/sweetalert.mini.css">
    
      <p><span>本文标题:</span>{{ page.title }}</a></p>
      <p><span>文章作者:</span>{{ theme.author }}</a></p>
      <p><span>发布时间:</span>{{ page.date.format("YYYY年MM月DD日 - HH:mm:ss") }}</p>
      <p><span>最后更新:</span>{{ page.updated.format("YYYY年MM月DD日 - HH:mm:ss") }}</p>
      <p><span>原始链接:</span><a href="{{ url_for(page.path) }}" title="{{ page.title }}">{{ page.permalink }}</a>
        <span class="copy-path"  title="点击复制文章链接"><i class="fa fa-clipboard" data-clipboard-text="{{ page.permalink }}"  aria-label="复制成功!"></i></span>
      </p>
      <p><span>许可协议:</span><i class="fa fa-creative-commons"></i> <a rel="license" href="https://creativecommons.org/licenses/by-nc-nd/4.0/" target="_blank" title="Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)">署名-非商业性使用-禁止演绎 4.0 国际</a> 转载请保留原文链接及作者。</p>  
    </div>
    <script> 
        var clipboard = new Clipboard('.fa-clipboard');
        clipboard.on('success', $(function(){
          $(".fa-clipboard").click(function(){
            swal({   
              title: "",   
              text: '复制成功',   
              html: false,
              timer: 500,   
              showConfirmButton: false
            });
          });
        }));  
    </script>
    {% endif %}
    
    1. 在目录 themes/next/source/css/_common/components/post/ 下添加 my-post-copyright.styl,内容如下:
    .my_post_copyright {
      width: 85%;
      max-width: 45em;
      margin: 2.8em auto 0;
      padding: 0.5em 1.0em;
      border: 1px solid #d3d3d3;
      font-size: 0.93rem;
      line-height: 1.6em;
      word-break: break-all;
      background: rgba(255,255,255,0.4);
    }
    .my_post_copyright p{margin:0;}
    .my_post_copyright span {
      display: inline-block;
      width: 5.2em;
      color: #333333; // title color
      font-weight: bold;
    }
    .my_post_copyright .raw {
      margin-left: 1em;
      width: 5em;
    }
    .my_post_copyright a {
      color: #808080;
      border-bottom:0;
    }
    .my_post_copyright a:hover {
      color: #0593d3; // link color
      text-decoration: underline;
    }
    .my_post_copyright:hover .fa-clipboard {
      color: #000;
    }
    .my_post_copyright .post-url:hover {
      font-weight: normal;
    }
    .my_post_copyright .copy-path {
      margin-left: 1em;
      width: 1em;
      +mobile(){display:none;}
    }
    .my_post_copyright .copy-path:hover {
      color: #808080;
      cursor: pointer;
    }
    
    1. 修改 themes/next/layout/_macro/post.swig ,如下:
      在代码
    {% if theme.wechat_subscriber.enabled and not is_index %}
        <div>
            {% include 'wechat-subscriber.swig' %}
        </div>
    {% endif %}
    

    之前,新增如下代码:

    <div>
        {% if not is_index %}
            {% include 'my-copyright.swig' %}
        {% endif %}
    </div>
    
    1. 打开 themes/next/source/css/_common/components/post/post.styl 文件,在最后一行增加代码:
    @import "my-post-copyright"
    
    1. 设置新建文章自动开启 copyright ,即新建文章自动显示自定义的版权声明,设置 ~/scaffolds/post.md 文件,如下:
    ---
    title: {{ title }}
    date: {{ date }}
    copyright: true #新增,开启
    ---
    

    相关文章

      网友评论

          本文标题:Hexo博客NexT主题美化之自定义文章底部版权声明

          本文链接:https://www.haomeiwen.com/subject/thxnuqtx.html