This repository has been archived on 2026-06-21. You can view files and clone it, but cannot push or open issues or pull requests.
Files
MetaLab/templates/MetaLab-2026/html/home/index.html

23 lines
538 B
HTML

{{template "layout/header.html" .}}
<body>
{{template "layout/nav.html" .}}
<main class="hero">
<div class="container">
<h1>Meta<span>Lab</span></h1>
<p class="hero-tagline">下一代开发者社区</p>
{{if .IsLoggedIn}}
<p class="hero-desc">欢迎回来,{{.Username}}</p>
{{else}}
<p class="hero-desc">一个为构建者准备的纯粹空间</p>
{{end}}
</div>
</main>
{{template "layout/footer.html" .}}
<script src="/static/js/common.js"></script>
</body>
</html>