18 lines
No EOL
293 B
HTML
18 lines
No EOL
293 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<article>
|
|
{{ if or .Title .Content }}
|
|
<div>
|
|
{{ with .Title }}<h2 class="title">{{ . }}</h2>{{ end }}
|
|
<hr />
|
|
{{ with .Content }}<div>{{ . }}</div>{{ end }}
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
<hr />
|
|
|
|
{{ partial "comments" }}
|
|
</article>
|
|
</main>
|
|
{{ end }} |