51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Hexo页脚跳动的心

编辑blog/themes/butterfly/layout/includes/footer.pug文件

将以下内容

|-----------|----------------------------------------------------------------------------| | 1 | ©${theme.footer.owner.since} - ${nowYear} By ${config.author} |

改为

|-----------|----------------------------------------------------------------------------------------------------------------------------------| | 1 | &copy;${theme.footer.owner.since} - ${nowYear + ' '} <i id="heartbeat" class="fa fas fa-heartbeat"></i> ${config.author} |

将以下内容

|-----------|----------------------------------------------| | 1 | &copy;${nowYear} By ${config.author} |

改为

|-----------|----------------------------------------------------------------------------------------------------| | 1 | &copy;${nowYear + ' '} <i id="heartbeat" class="fa fas fa-heartbeat"></i> ${config.author} |

将以下内容添加到<head></head>标签内,也可以直接放在footer.pug文件的最后一行:

|-----------|-----------------------------------------------------------------------------------------------------------------------| | 1 | <link rel="stylesheet" href="https://fastly.jsdelivr.net/gh/HCLonely/images@master/others/heartbeat.min.css"> |

footer.pug文件完整代码如下所示:

|---------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #footer-wrap if theme.footer.owner.enable - var now = new Date() - var nowYear = now.getFullYear() if theme.footer.owner.since && theme.footer.owner.since != nowYear .copyright!= `&copy;${theme.footer.owner.since} - ${nowYear} <i id="heartbeat" class="fa fas fa-heartbeat"></i> By ${config.author}` else .copyright!= `&copy;${nowYear} <i id="heartbeat" class="fa fas fa-heartbeat"></i> By ${config.author}` if theme.footer.copyright .framework-info span= _p('footer.framework') + ' ' a(href='https://hexo.io')= 'Hexo' span.footer-separator | span= _p('footer.theme') + ' ' a(href='https://github.com/jerryc127/hexo-theme-butterfly')= 'Butterfly' if theme.footer.custom_text .footer_custom_text!=`${theme.footer.custom_text}` <link rel="stylesheet" href="https://fastly.jsdelivr.net/gh/HCLonely/images@master/others/heartbeat.min.css"> |


赞(3)
未经允许不得转载:工具盒子 » Hexo页脚跳动的心