shenliyang / hexo-theme-snippet

Snippet 简洁而不简单,也许是一款你寻找已久的hexo主题
https://snippet.shenliyang.com/
MIT License
1.09k stars 210 forks source link

文章页面增加关注微信公众号 #140

Closed steley closed 5 years ago

steley commented 5 years ago
  1. 更改CSS

    snippet/source/css/style.css

    /*====================================================
    微信公众号
    ====================================================*/
    .wechat {
    text-align: center;
  2. 主题设置

    _config.yml

    ## 微信公众号
    wechat:
    enable: true
    title: 欢迎关注微信公众号
    img: /images/wechat-qcode.jpg
  3. 修改post文件

    layout/post.ejs 在打赏上方添加

    <div class="wechat">
    <% if(theme.wechat.enable){ %>
    <hr />
    <p> <%- theme.wechat.title %> </p>
    <img src="<%- theme.wechat.img %>" />
    <% } %>
    </div>
  4. 效果预览 Selecion_026.png

shenliyang commented 5 years ago

欢迎二次开发。