Files
jiang13-forum/templates/page/view.tmpl
2026-08-29 16:49:39 +08:00

13 lines
382 B
Cheetah

{{define "page/view"}}
{{template "base/head" .}}
{{template "base/navbar" .}}
{{if .Flash}}<div class="j13-flash" role="status">{{.Flash}}</div>{{end}}
<main class="j13-main j13-page">
<article class="j13-page__article">
<h1>{{.PageTitle}}</h1>
<div class="j13-page__body post-detail-content">{{.BodyHTML}}</div>
</article>
</main>
{{template "base/footer" .}}
{{end}}