1. 程式人生 > >hexo next主題去掉碼市的Coding Pages等待頁

hexo next主題去掉碼市的Coding Pages等待頁

簡介

本文介紹去除碼市的Coding Pages的等待跳轉頁的方法,採用hexo的next主題5.1.2版本.

1.升級銀牌會員

完善資訊就ok,這一步是必須的。

2.修改footer.swig

找到主題下的這個檔案,找到這一行:

<div class="theme-info">

原來這裡面放的是主題 — NexT.Pisces v5.1.2,如下圖所示:

其實這個沒什麼卵用,將這個div的東西都刪掉,然後新增一句:

 <span>Hosted by <a href="https://pages.coding.me" style
="font-weight: bold">
Coding Pages</a></span>

最後完整的尾部資訊是:

{% if theme.copyright %}
  <div class="powered-by">{#
  #}{{ __('footer.powered', '<a class="theme-link" href="https://hexo.io">Hexo</a>') }}{#
#}</div>

  <span class="post-meta-divider">|</span>
<div class="theme-info"> <span>Hosted by <a href="https://pages.coding.me" style="font-weight: bold">Coding Pages</a></span> </div> {% endif %}

最終的效果:

既保證了原來的結構也達到了效果。之前曾嘗試過在copyright也就是博主名後面加(參考連結1的方案)弄兩個豎線,但是又對不齊無奈太醜了所以放棄.

參考