页脚设置,运行时正确显示显示您网站的运行时间,并每秒更新一次。消息根据一天中的不同小时而变化。个性化页脚可以通过添加自定义信息、社交媒体链接和动态内容(如网站运行时间和访客统计)来增强用户体验。利用图标(如FontAwesome)和样式(如CSS)美化页脚,使其既美观又实用。此外,可加入版权声明和联系方式,以建立品牌形象和用户信任。

修改footer.ejs

  • themes/stellar/layout/_partial/main/footer.ejs中末尾添加以下代码
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<%
const content = theme.footer.content?.replace('{author.name}', (config.author || 'Anonymity'))?.replace('{theme.name}', stellar_info('name'))?.replace('{theme.version}', stellar_info('version'))?.replace('{theme.tree}', stellar_info('tree'))

function layoutDiv() {
var el = ''
el += `<footer class="page-footer${scrollreveal(' ')} footnote">`
el += '<hr>'
// sitemap
if (theme.footer.sitemap && Object.keys(theme.footer.sitemap).length > 0) {
el += '<div class="sitemap">'
for (let group of Object.keys(theme.footer.sitemap)) {
let items = theme.footer.sitemap[group]
if (items == undefined || items.length == 0) {
continue
}
el += '<div class="sitemap-group">'
el += '<span class="fs15">' + group + '</span>'
items.forEach((item, i) => {
el += '<a href="' + url_for(md_link(item)) + '">'
el += __(md_text(item))
el += '</a>'
});
el += '</div>'
}
el += '</div>'
}
// footer content
el += '<div class="footer-content">'
if (content) {
el += markdown(content)
}
el += '<span id="runtime_span"></span>'
el += '</div></footer>'
return el
}
%>
<%- layoutDiv() %>

<script type="text/javascript">
function show_runtime() {
window.setTimeout(show_runtime, 1000);

const startDate = new Date("2023/05/10 17:00:00");
const currentDate = new Date();
const timeDifference = currentDate - startDate;

const millisecondsInADay = 24 * 60 * 60 * 1000;
const days = timeDifference / millisecondsInADay;
const fullDays = Math.floor(days);
const hours = (days - fullDays) * 24;
const fullHours = Math.floor(hours);
const minutes = (hours - fullHours) * 60;
const fullMinutes = Math.floor(minutes);
const seconds = Math.floor((minutes - fullMinutes) * 60);

const timeString = `${fullDays} 天 ${fullHours.toString().padStart(2, '0')} 小时 ${fullMinutes.toString().padStart(2, '0')} 分 ${seconds.toString().padStart(2, '0')} 秒`;

const currentHour = currentDate.getHours(); // 获取当前小时数

let message;
if (currentHour < 18 && currentHour >= 9) { // 使用当前小时数进行条件判断
message = `<img class='boardsign' src='https://img.shields.io/badge/mikey-red?style=social&logo=BuyMeACoffee' title='祝我马上财富自由呀~'><br>
<div style="font-size:13px;font-weight:bold">
本站居然运行了 ${timeString}
<i id="heartbeat" class="fas fa-heartbeat"></i><br>
</div>
<div style="font-size:13px;font-weight:bold">
本博客所有文章除特别声明外,均采用<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">[CC BY-NC-SA 4.0]</a>
许可协议,转载请注明出处。
</div>`;
} else {
message = `<img class='boardsign' src='https://img.shields.io/badge/sleep-red?style=social&logo=BuyMeACoffee' title='下班了就该开开心心地玩耍~'><br>
<div style="font-size:13px;font-weight:bold">
本站居然运行了 ${timeString}
<i id="heartbeat" class="fas fa-heartbeat"></i><br>
</div>
<div style="font-size:13px;font-weight:bold">
本博客所有文章除特别声明外,均采用<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">[CC BY-NC-SA 4.0]</a>
许可协议,转载请注明出处。
</div>
<br>`;
}
document.getElementById("runtime_span").innerHTML = message;
}
show_runtime();
</script>

插入心跳图标

  • 首先,确保您的博客中包含 Font Awesome。您可以将 Font Awesome CDN 链接添加到主题的布局文件中
  • themes/stellar/layout/_partial/head.ejs中末尾添加以下代码
1
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">

修改icons.yml

  • themes/stellar/_data/icons.yml中末尾添加以下代码
1
2
3
heartbeat:
id: "heartbeat"
class: "fas fa-heartbeat"

修改_custom.styl

  • themes/stellar/source/css/_custom.styl中末尾添加以下代码
  • footer为页脚居中设置,heartbeat为跳动的心
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.page-footer {
text-align: center; /* Center all text inside the footer */
}

.footer-content {
display: flex;
flex-direction: column;
align-items: center;
}

#heartbeat {
color: red;
animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
0%, 25%, 50%, 75%, 100% {
transform: scale(1);
}
20%, 45%, 55%, 70% {
transform: scale(1.3);
}
}
  • _config.stellar.yml配置(themes/stellar/_config.yml文件)
    1
    2
    3
    4
    footer:
    content: |
    # 本站由 [{author.name}](/) 使用 [{theme.name} {theme.version}]({theme.tree}) 主题创建。
    # 本博客所有文章除特别声明外,均采用 [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) 许可协议,转载请注明出处。