首页 > 其他分享 >2023-11-21 hexo next主题 如何在博客网站底部添加备案号

2023-11-21 hexo next主题 如何在博客网站底部添加备案号

时间:2023-11-21 21:26:27浏览次数:41  
标签:11 备案号 21 footer since current theme endif post

主题:NexT.Pisces v5.1.4

找到路径:博客目录名称\themes\hexo-theme-next\layout\_partials

找到文件:footer.swig,并在里面添加备案号,如图:

未改变前:

<div class="copyright">{#
#}{% set current = date(Date.now(), "YYYY") %}{#
#}&copy; {% if theme.footer.since and theme.footer.since != current %}{{ theme.footer.since }} &mdash; {% endif %}{#
#}<span itemprop="copyrightYear">{{ current }}</span>
  <span class="with-love">
    <i class="fa fa-{{ theme.footer.icon }}"></i>
  </span>
  <span class="author" itemprop="copyrightHolder">{{ theme.footer.copyright || config.author }}</span>

  {% if theme.post_wordcount.totalcount %}
    <span class="post-meta-divider">|</span>
    <span class="post-meta-item-icon">
      <i class="fa fa-area-chart"></i>
    </span>
    {% if theme.post_wordcount.item_text %}
      <span class="post-meta-item-text">{{ __('post.totalcount') }}&#58;</span>
    {% endif %}
    <span title="{{ __('post.totalcount') }}">{#
    #}{{ totalcount(site, '0,0.0a') }}{#
  #}</span>
  {% endif %}
  
</div>

改变后:

<div class="copyright">{#
#}{% set current = date(Date.now(), "YYYY") %}{#
#}&copy; {% if theme.footer.since and theme.footer.since != current %}{{ theme.footer.since }} &mdash; {% endif %}{#
#}<span itemprop="copyrightYear">{{ current }}</span>
  <span class="with-love">
    <i class="fa fa-{{ theme.footer.icon }}"></i>
  </span>
  <span class="author" itemprop="copyrightHolder">{{ theme.footer.copyright || config.author }}</span>

  {% if theme.post_wordcount.totalcount %}
    <span class="post-meta-divider">|</span>
    <span class="post-meta-item-icon">
      <i class="fa fa-area-chart"></i>
    </span>
    {% if theme.post_wordcount.item_text %}
      <span class="post-meta-item-text">{{ __('post.totalcount') }}&#58;</span>
    {% endif %}
    <span title="{{ __('post.totalcount') }}">{#
    #}{{ totalcount(site, '0,0.0a') }}{#
  #}</span>
  {% endif %}
  <a href="http://beian.miit.gov.cn">粤ICP备xxx号</a>
</div>

对,就是在copyright类的最后一处添加备案号链接。

注:备案链接不要添加www,不然有可能404(来自网友)。

 

标签:11,备案号,21,footer,since,current,theme,endif,post
From: https://www.cnblogs.com/iuniko/p/17847631.html

相关文章

  • 2023年11月21日阅读笔记
    《黑客与画家》技艺提升有捷径么首先,最好的文字来自于不停的修改,好的编程语言和软件产品同样如此,没什么软件产品是完美的。因此,如果你打算有机会不断调整优化自己的设计和实现,那你就需要保证你的工作在某个特定阶段是可持续的。其次,技术热点不断变更,每次的技术更迭,就像流水冲......
  • 【教程】cpp转python Nanobind 实践 加速轻量版 pythonbind11
    主要是尝试一下把c++这边的函数封装打包给python用,选择nanobind的原因是:1.优化速度快,2.生成二进制包小,不过pythonbind11是更为广泛知道的,nanobind也是pythonbind11作者后续做的,可以查看作者写的whyanotherbindinglibaray?总结一下就是:nanobind同样是一个用于创建C++和P......
  • 11.21每日总结
    实验内容与完成情况:(一) 编程实现以下指定功能,并用Hadoop提供的HBaseShell命令完成相同任务:  List列出hbase的表  查看表中的数据并且向指定表中添加数据。  删除列族。  统计表的行数和删除表。(二) HBase数据库操作1.创建表。     ......
  • 2023-11-23
    packagecom.example.qiyeerp.controller;importcom.example.qiyeerp.common.AjaxResult;importcom.example.qiyeerp.common.ApplicationVariable;importcom.example.qiyeerp.common.ToolsForAll;importcom.example.qiyeerp.info.*;importcom.example.qiyeerp.mapp......
  • 11.21
    昨天没闲话。3yy今天评价学校水龙头:你在二楼是找不到几个正常的水龙头的。说的很对,因为二楼的水龙头歪的比正常的还多。放假时候B站主页给我推了galgame?看来我调教的挺好。游戏名叫《他和她和她的恋爱》我去,纯爱神作(然而并不是),看了这游戏的讲解给我震撼到了,这剧情是牛的吧,世界......
  • 每日总结11.21
    HBase数据库操作(1)createTable(StringtableName,String[]fields)创建表,参数tableName为表的名称,字符串数组fields为存储记录各个字段名称的数组。要求当HBase已经存在名为tableName的表的时候,先删除原有的表,然后再创建新的表。(2)addRecord(StringtableName,Stringrow,Stri......
  • 聪明办法学Python_task1_11.20-11.21
    聪明办法学Python_task1_11.20-11.211.task011.1Python灵魂三问1.2Python环境配置2.task022.1注释2.2基本控制台输出2.3错误2.4基本控制台输入2.5导入模块1.task01:Python简介/安装1.1Python灵魂三问为什么学Python?Python是全球最流行的编程语言......
  • 2023.11.21做题笔记(对局匹配,砝码称重shui,单词接龙)
    今天水了一节英语课,翘了一节C++课,就是感觉摆的一批。 对局匹配P8656[蓝桥杯2017国B]对局匹配-洛谷|计算机科学教育新生态(luogu.com.cn)   对于这道题:大佬解法1:#include<bits/stdc++.h>usingnamespacestd;constintN=1e5+5;intn,k,a[N],an......
  • P6491 [COCI2010-2011#6] ABECEDA
    前言思维难度:绿。代码难度:绿/蓝。综合:绿/蓝。带来两种做法。主要是预处理的部分不同,所以就来水一篇。传送门。前置芝士。分析我们很容易想到通过输入去确定大概的大小。具体地,对于两字符串,若前$i-1$位相同,那么我们要么通过第$i$位确定大小,要么第$i$位相同去比较后......
  • ESD保护二极管 RCLAMP0521P-N参数详解
    市场上有选用东沃电子推出的RCLAMP0521P-N低电容ESD静电保护器件应用于天线静电防护。天线广泛出现于便携式电子产品中,众所周知,天线所接受的信号容易受到电磁、静电干扰,因此ESD静电保护器件成为了天线常见的搭配器件。考虑到天线所使用的频段,以及不同频段所能够接受的最小寄生电容......