12 lines
227 B
HTML
12 lines
227 B
HTML
{{ define "main" }}
|
|
<article class="post-single">
|
|
<header>
|
|
<div class="post-title">
|
|
<h1>{{ .Title }}</h1>
|
|
</div>
|
|
</header>
|
|
<section class="post-content">
|
|
{{ .Content }}
|
|
</section>
|
|
</article>
|
|
{{ end }}
|