36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!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> |