Friend-Circle-Lite/index.html

36 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh-CN" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>文章卡片展示</title>
</head>
<style>
.root-container {
margin: 0 auto;
padding: 20px;
}
</style>
<body>
<div class="root-container" style="max-width: 1000px;">
<div id="friend-circle-lite-root"></div>
</div>
<script>
if (typeof UserConfig === 'undefined') {
var UserConfig = {
// 填写你的fc Lite地址
private_api_url: './',
// 点击加载更多时一次最多加载几篇文章默认20
page_turning_number: 24,
// 头像加载失败时,默认头像地址
error_img: 'https://i.p-i.vip/30/20240815-66bced9226a36.webp', // https://pic.imgdb.cn/item/6695daa4d9c307b7e953ee3d.jpg
}
}
</script>
<link rel="stylesheet" href="./main/fclite.min.css">
<script src="./main/fclite.min.js"></script>
</body>
</html>