Files
site/templates/blog_post.tmpl
2022-02-16 16:08:24 -06:00

17 lines
294 B
Cheetah

{{ template "header.tmpl" . }}
<div>
{{ range $comment := .Comments }}
<div class="comment">
<div>
By {{ $comment.Author }} on{{ $comment.Date }}
</div>
<div>
{{ $comment.Content }}
</div>
</div>
{{ else }}
<p>No comments...</p>
{{ end }}
</div>
{{ template "footer.tmpl" . }}