First draft

This commit is contained in:
2023-06-14 21:16:37 +02:00
parent ff4a8ce413
commit e8a8269c6c
102 changed files with 5407 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{{/* 单个帖子的模板 */}}
{{ define "main" }}
<div class="single-container is-centered">
<div class="archive">
<h1 class="title is-1">{{ .Title }}</h1>
<div class="content about-content">
{{ .Content }}
</div>
</div>
</div>
{{ end }}