hexo-Fluid主题-文章末尾添加作者和版权声明等

本文最后更新于:May 18, 2022 am

hexo-Fluid主题中,在文章的末尾添加作者、版权声明和本文链接,添加网站已运行时间。

目录

1.文章版权信息

第一步

1
打开 themes\fluid\layout 中的 post.ejs 文件; 即打开fluid主题里面的文件

第二步

1
找到以下内容并进行修改;


将红色部分替换为以下代码:

1
2
3
4
5
6
   <% if(theme.post.copyright.enable && theme.post.copyright.content && page.copyright !== false) { %><p class="note note-warning">
<strong>本文作者: </strong><a href="<%- url_for() %>"><%- theme.about.name || config.author || config.title %></a> <br>
<strong>本文链接: </strong><a href="<%- full_url_for(page.path) %>"><%- full_url_for(page.path) %></a> <br>
<strong>版权声明: </strong><%- theme.post.copyright.content %>
</p>
<% } %>

第三步

1
保存文本,重启本地预览即可。

2022年5月18日

提示:这里的作者名称,设置的是在主题里面的yml配置文件中的about模块中的name名称的值,即about页面中的名称。所以修改时,只需要about中的名称即可。

2.网站运行时间添加

只需要在主题配置中的 footer: content 添加:

1
2
3
4
5
6
7
8
9
10
11
footer:
content: '
<a href="javascript:" rel="nofollow noopener"><span>墨水的记忆</span></a>
<i class="iconfont icon-love"></i>
<a href="javascript:" rel="nofollow noopener"><span>DragonOne</span></a>
<div>
<span id="timeDate">载入天数...</span>
<span id="times">载入时分秒...</span>
<script src="/js/duration.js"></script>
</div>
'

在博客主题目录下创建 source/js/duration.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
!(function() {
function update() {
var now = new Date();
var grt = new Date("2020-01-01 00:00:00"); /** 此处是计时的起始时间 **/
now.setTime(now.getTime()+250);
days = (now - grt ) / 1000 / 60 / 60 / 24;
dnum = Math.floor(days);
hours = (now - grt ) / 1000 / 60 / 60 - (24 * dnum);
hnum = Math.floor(hours);
if(String(hnum).length === 1 ){
hnum = "0" + hnum;
}
minutes = (now - grt ) / 1000 /60 - (24 * 60 * dnum) - (60 * hnum);
mnum = Math.floor(minutes);
if(String(mnum).length === 1 ){
mnum = "0" + mnum;
}
seconds = (now - grt ) / 1000 - (24 * 60 * 60 * dnum) - (60 * 60 * hnum) - (60 * mnum);
snum = Math.round(seconds);
if(String(snum).length === 1 ){
snum = "0" + snum;
}
document.getElementById("timeDate").innerHTML = "本站安全运行&nbsp"+dnum+"&nbsp天";
document.getElementById("times").innerHTML = hnum + "&nbsp小时&nbsp" + mnum + "&nbsp分&nbsp" + snum + "&nbsp秒";
}
setInterval(update, 1000);
})();

本文作者: 墨水记忆
本文链接: https://tothefor.com/DragonOne/2233990701.html
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!