23 lines
538 B
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>
|