GoBlog/templates/post.gohtml

18 lines
418 B
Plaintext
Raw Normal View History

2020-07-31 13:48:01 +00:00
{{ define "title" }}
<title>{{ with p . "title" }}{{ . }} - {{end}}{{ blog.Title }}</title>
2020-07-31 13:48:01 +00:00
{{ end }}
{{ define "main" }}
<main class=h-entry>
<article>
{{ with p . "title" }}<h1 class=p-name>{{ . }}</h1>{{ end }}
{{ with .Content }}
<div class=e-content>{{ md . }}</div>
{{ end }}
2020-07-31 13:48:01 +00:00
</article>
</main>
{{ end }}
2020-08-05 17:14:10 +00:00
{{ define "post" }}
{{ template "base" . }}
2020-07-31 13:48:01 +00:00
{{ end }}