Files
SWebStatic/layouts/index.html
T

52 lines
2.7 KiB
HTML
Raw Normal View History

{{ define "body" }}
<div class="home-hero">
<div class="logo-wrap">
<img src="{{ .Site.Params.logo }}" alt="SNOWARE Logo" class="home-logo" width="160" height="160">
</div>
<h1 class="home-title">SNOWARE</h1>
2026-07-08 17:41:38 +08:00
<div class="home-poem">
<p class="poem-line fade-1">群星璀璨而流星划过天际,曳尾长明而星空黯淡无光,我们如何在瞬间探寻永恒的答案?</p>
<p class="poem-line fade-2">苦旅漫漫,雾霭蒙蒙,文牒拭作灰烬,家书遥遥无期。</p>
<p class="poem-line fade-3">雾开雾散,云卷云舒,潮起潮息,光阴流转而你我不凡之辈,即亡没砂石亦必熠熠生辉</p>
<p class="poem-line fade-4">曲折的进步似为唯一的答案,我心永恒,流光跃过风雨,终会与你同行。</p>
<p class="poem-sig">S.A. 2026 7.5 @EDT</p>
</div>
<nav class="home-nav">
{{ range .Site.Params.navLinks }}
<a href="{{ .url }}" class="home-btn{{ if .external }} external{{ end }}" {{ if .external }}target="_blank" rel="noopener"{{ end }}>
{{ .name }}
</a>
{{ end }}
</nav>
{{ with .Site.Params.services }}
<div class="home-services">
<h2>服务</h2>
<div class="services-grid">
{{ range . }}
{{ if .url }}
<a href="{{ .url }}" class="service-card external" target="_blank" rel="noopener">
{{ else }}
<div class="service-card no-link">
{{ end }}
<div class="service-icon">
{{ if eq .icon "git" }}
<svg viewBox="0 0 24 24"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 00-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0020 4.77 5.07 5.07 0 0019.91 1S18.73.65 16 2.48a13.38 13.38 0 00-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 005 4.77a5.44 5.44 0 00-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 009 18.13V22"/></svg>
{{ else if eq .icon "cloud" }}
<svg viewBox="0 0 24 24"><path d="M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"/></svg>
{{ else if eq .icon "game" }}
<svg viewBox="0 0 24 24"><rect x="2" y="6" width="20" height="12" rx="2"/><line x1="6" y1="12" x2="10" y2="12"/><line x1="8" y1="10" x2="8" y2="14"/><circle cx="16" cy="10" r="1" fill="currentColor" stroke="none"/><circle cx="19" cy="12" r="1" fill="currentColor" stroke="none"/></svg>
2026-07-08 17:41:38 +08:00
{{ else if eq .icon "team" }}
<svg viewBox="0 0 24 24"><path d="M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 00-3-3.87"/><path d="M16 3.13a4 4 0 010 7.75"/></svg>
{{ end }}
</div>
<h3>{{ .name }}</h3>
<p>{{ .desc }}</p>
{{ if .url }}</a>{{ else }}</div>{{ end }}
{{ end }}
</div>
</div>
{{ end }}
</div>
{{ end }}