1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-01 13:24:27 +00:00
GoBlog/templates/editorpreview.gohtml

10 lines
264 B
Plaintext
Raw Normal View History

{{ define "editorpreview" }}
{{ with .Data.RenderedTitle }}<h1>{{ . }}</h1>{{ end }}
{{ include "summaryandpostmeta" . }}
{{ if .Data.Content }}
<div>
{{ content .Data true }}
</div>
{{ end }}
{{ include "posttax" . }}
{{ end }}