Files
mce/templates/MetaLab-2026/html/home/index.html
Victor_Jay b0a1ff3c3f refactor: 将 common.js 统一移至 footer.html 加载
- 所有页面的 common.js 引用移至 layout/footer.html 统一管理
- 避免新增页面遗漏 common.js 导致退出登录、消息轮询等功能失效
- 修复 messages/index.html 中 inline script 在 common.js 之前调用 getCSRFToken 的顺序问题
2026-06-02 22:47:21 +08:00

122 lines
5.6 KiB
HTML

{{template "layout/header.html" .}}
<body>
{{template "layout/nav.html" .}}
<!-- Hero Banner -->
<section class="hero-banner">
<div class="hero-bg"></div>
<div class="hero-content">
<h1 class="hero-title">Meta<span class="hero-accent">Lab</span></h1>
<p class="hero-tagline">下一代开发者社区</p>
{{if .IsLoggedIn}}
<p class="hero-welcome">欢迎回来,{{.Username}} 👋</p>
{{else}}
<p class="hero-welcome">一个为构建者准备的纯粹空间</p>
{{end}}
</div>
</section>
<!-- Main Content -->
<div class="container home-main">
<div class="home-grid">
<!-- Left: Article Feed -->
<main class="home-feed">
<div class="feed-header">
<h2 class="feed-title">最新文章</h2>
<a href="/posts" class="feed-more">查看全部 →</a>
</div>
{{if .Posts}}
<div class="article-list">
{{range .Posts}}
<article class="article-card">
<div class="article-body">
<h3 class="article-title">
<a href="/posts/{{.ID}}">{{.Title}}</a>
</h3>
<p class="article-excerpt">{{.Excerpt}}</p>
<div class="article-meta">
<span class="article-author">{{.AuthorName}}</span>
<span class="meta-dot">·</span>
<span class="article-time">{{.CreatedAt.Format "2006-01-02"}}</span>
</div>
</div>
</article>
{{end}}
</div>
{{else}}
<div class="empty-feed">
<div class="empty-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" width="48" height="48"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>
</div>
<p class="empty-text">暂无文章,成为第一个分享的人吧</p>
{{if .IsLoggedIn}}
<a href="/studio/write" class="btn-primary">开始创作</a>
{{end}}
</div>
{{end}}
</main>
<!-- Right: Sidebar -->
<aside class="home-sidebar">
<!-- User Card -->
<div class="sidebar-card user-card">
{{if .IsLoggedIn}}
{{if .Avatar}}
<img src="{{.Avatar}}" alt="{{.Username}}" class="user-avatar-img">
<div class="user-avatar-fallback" style="display:none">{{substr .Username 0 1}}</div>
{{else}}
<div class="user-avatar-fallback">{{substr .Username 0 1}}</div>
{{end}}
<h3 class="user-card-name">{{.Username}}</h3>
<p class="user-card-desc">欢迎加入 MetaLab</p>
<a href="/space" class="user-card-link">我的空间</a>
{{else}}
<div class="user-avatar-fallback guest-avatar">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" width="28" height="28"><circle cx="12" cy="8" r="4"/><path d="M4 20c0-4 4-7 8-7s8 3 8 7"/></svg>
</div>
<h3 class="user-card-name">未登录</h3>
<p class="user-card-desc">登录后解锁社区功能</p>
<a href="/auth/login" class="btn-login">登录</a>
{{end}}
</div>
<!-- Community Stats -->
<div class="sidebar-card stats-card">
<h3 class="stats-title">社区动态</h3>
<div class="stats-grid">
<div class="stat-item">
<span class="stat-value">{{.PostCount}}</span>
<span class="stat-label">篇文章</span>
</div>
</div>
</div>
<!-- Quick Links -->
<div class="sidebar-card links-card">
<h3 class="links-title">快捷入口</h3>
<a href="/posts" class="links-item">
<svg class="links-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>
浏览文章
</a>
{{if .IsLoggedIn}}
<a href="/studio/write" class="links-item">
<svg class="links-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20h9"/><path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"/></svg>
发布文章
</a>
<a href="/space" class="links-item">
<svg class="links-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
个人空间
</a>
{{end}}
</div>
</aside>
</div>
</div>
{{template "layout/footer.html" .}}
</body>
</html>