Init v3.2

This commit is contained in:
JiXieShi
2024-03-21 15:25:12 +08:00
commit 6e70a1d4df
49 changed files with 2115 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{{template "header" .}}
<div class="sub-title">- {{ .Title }} -</div>
<div class="categories">
{{range .Data}}
<div class="categories-card">
<a href="/?category={{ .Name }}">
<h3><img class="icon" src="/public/img/folder.svg" alt=""> {{ .Name }} <sub>({{ .Quantity }})</sub></h3>
</a>
<article class="categories-article">
{{range .Articles}}
<a href="/article?key={{ .ShortUrl }}">{{ .Title }}</a>
{{end}}
</article>
</div>
{{end}}
</div>
{{template "footer" .}}