Files
jiapu/profile-feed.html
T
2026-07-09 17:30:10 +08:00

109 lines
4.0 KiB
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>发布动态 - 个人中心 - 代代相传</title>
<link rel="stylesheet" href="public/css/public.css" />
<link rel="stylesheet" href="public/layui/css/layui.css" />
<link rel="stylesheet" href="public/css/profile-module.css" />
</head>
<body class="page-profile-module" data-feed-page>
<header class="site-header">
<div class="container nav">
<a class="brand magnetic" href="profile.html"
><img class="brand-logo brand-logo-mark" src="public/images/logo-mark.png" alt="" /><span class="brand-text">个人中心</span></a
>
<nav class="nav-links">
<a href="profile-family-home.html">家谱主页</a
><a href="profile-content.html">内容发布</a
><a class="active" href="profile-feed.html">发布动态</a>
</nav>
<div class="nav-actions">
<a href="profile-family-home.html">返回家谱主页</a
><a class="btn primary magnetic" href="profile-feed-edit.html"
>发布</a
>
</div>
</div>
</header>
<main>
<section class="module-hero">
<div class="container">
<div class="module-kicker">Family Feed</div>
<div class="module-title-row">
<div>
<h1>发布动态</h1>
<p>向家族圈发布图文动态,可设置置顶和精华。</p>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container module-layout">
<aside class="module-nav">
<a href="profile-content.html">内容发布</a
><a class="active" href="profile-feed.html">发布动态</a
><a href="profile-album.html">相册</a
><a href="profile-video.html">视频</a>
</aside>
<div class="module-main">
<section class="module-panel">
<h2>动态草稿</h2>
<div class="form-like">
<p>
<span>内容</span><b>0/200</b
><a class="link-btn" href="profile-feed-edit.html">编辑</a>
</p>
<p>
<span>图片</span><b>可添加多张</b
><a
class="link-btn"
href="#"
data-layer-msg="请选择要上传的图片"
>添加</a
>
</p>
<p>
<span>置顶</span><b></b
><a
class="link-btn"
href="#"
data-layer-select="是|否"
data-select-title="切换状态"
>切换</a
>
</p>
<p>
<span>精华</span><b></b
><a
class="link-btn"
href="#"
data-layer-select="是|否"
data-select-title="切换状态"
>切换</a
>
</p>
</div>
</section>
<section class="module-panel">
<h2>最近动态</h2>
<!-- 动态列表由 /feeds/page 接口渲染,点赞和评论走对应子接口 -->
<div class="module-list" data-feed-list>
<div class="api-empty">动态加载中...</div>
</div>
</section>
</div>
</div>
</section>
</main>
<script src="public/js/jquery360.js"></script>
<script src="public/layui/layui.js"></script>
<script src="public/js/lay-config.js"></script>
<script src="public/js/profile-common.js"></script>
<script src="public/js/api-client.js"></script>
<script src="public/js/feed-pages.js"></script>
<script src="public/js/page-effects.js"></script>
</body>
</html>