hosea1008
4/17/2020 - 7:54 AM

Hexo Next主题备案

https://xian6ge.cn/posts/2da0ce2e/

修改\themes\next\layout\_partials\ 下面的 footer.swig 文件

加入

<div class="BbeiAn-info">
    {{ __('赣ICP备') }} -
    <a target="_blank" href="http://www.miitbeian.gov.cn/" style="color:#f0d784"  rel="nofollow">你自己的备案号</a> <!--a标签中增加nofollow属性,避免爬虫出站。-->| 
    <a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=你自己的备案号" style="color:#f0d784;text-decoration:none;padding-left:30px;background:url(https://s1.ax1x.com/2018/09/29/ilmwIH.png) no-repeat left center" rel="nofollow">{{ __('赣公网安备 你自己的备案号') }}</a>      <!--这里将图标作为了背景,以使得能和后面的文字在同一行-->
</div>

在下面这段的前面

{% if theme.footer.theme.enable %}
  <div class="theme-info">{#
  #}{{ __('footer.theme') }} – {{ next_url('https://theme-next.org', 'NexT.' + theme.scheme, {class: 'theme-link'}) }}{#
  #}{% if theme.footer.theme.version %} v{{ version }}{% endif %}{#
#}</div>
{% endif %}

{% if theme.footer.custom_text %}
  <div class="footer-custom">{#
  #}{{ theme.footer.custom_text }}{#
#}</div>
{% endif %}