效果图
hexo-history-calendar 历史上的今天插件
参考小冰大佬链接地址如下:
1,插件安装:
1 2 3 4 5
| npm i hexo-history-calendar --save
# 或者
cnpm i hexo-history-calendar --save
|
注意,一定要加 --save
,不然本地预览的时候可能不会显示!!!
2,新增网站根目录_config 配置项 (不是主题的):
1 2 3 4 5 6 7 8 9
| history_calendar: priority: 3 enable: true enable_page: all layout: type: class name: sticky_layout index: 0 temple_html: '<div class="card-widget card-history"><div class="card-content"><div class="item-headline"><i class="fas fa-clock fa-spin"></i><span>那年今日</span></div><div id="history-baidu" style="height: 100px;overflow: hidden"><div class="history_swiper-container" id="history-container" style="width: 100%;height: 100%"><div class="swiper-wrapper" id="history_container_wrapper" style="height:20px"></div></div></div></div>'
|
priority
插件的叠放顺序,数字越大,叠放约靠前。
3,看效果
1
| hexo cl && hexo g && hexo s
|