自定义Volantis主题页脚 Qifei 网站编程 发布于:2020年10月10日 次浏览 修改主题文件下的_config.yml 找到页脚部分: 12345678############################### Site Footer ############################### > startsite_footer: # layout of footer: [aplayer, social, license, info, copyright,analytics] layout: [custom] #custom custom: '<a style="padding-right: 1%;" href="https://hexo.io/"><img src="https://img.shields.io/badge/Powered-Hexo-red"></a><a style="padding-right: 1%;" href="https://volantis.js.org/"><img src="https://img.shields.io/badge/Theme-Volantis-blue"></a><a style="padding-right: 1%;" href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh"><img src="https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-success"></a><a style="padding-right: 1%;" href="https://sci.ci"><img src="https://img.shields.io/badge/Copyright-2019--2020%20QF-orange"></a>' br: '<br>'############################### Site Footer ############################### > end 修改后效果: 更新于:2021年2月20日 Volantis Pandas知识总结 1:简介在我看来,Pandas是一款数据处理工具,它相比于numpy而言,更加具有针对性。比如说,Pandas提供了两种数据结构,Series和DataFrame,分别表示一维数据和二维数据,而... 正则表达式 1:简介正则表达式,常用于匹配包含一定规律的字符串,可以从字符串中提取符合规律的字符串段,或者返回是否符合要求。也可用于替换字符串。 比如,我们设置密码时,网站通常要求,密码为字母+数字+下划线...