mirror of https://github.com/jkjoy/sunpeiwen.git
948 B
948 B
title | tags | published | categories | abbrlink | date | cover | ||
---|---|---|---|---|---|---|---|---|
用Memos API实现hexo博客的动态说说页面 |
|
true | 分享 | 286ad0c6 | 2023-06-13 15:57:00 |
2023.12.1 更新 修复显示使用第三方S3储存的图片
新建一个页面
hexo new page Memos
修改Memos/index.md
内容为
---
title: Memos
comments: false
date: 2023-06-07 14:17:13
---
<div class='memo-nums'>
<p class='note note-info memo-nums-text'>
共发布了 <span id="memosCount">不知道多少</span> 条说说
</p>
</div>
<div id="bber"></div>
<script type="text/javascript">
var bbMemos = {
memos : 'https://memos.ee/',
limit : '20',
creatorId:'1',
domId: '',
}
</script>
<script src="https://blogcdn.loliko.cn/memos2/js/marked.js"></script>
<script src="https://blogcdn.loliko.cn/memos2/js/memos.js?v0.0.1"></script>
即可~
代码来源于网络~