11 lines
225 B
HTML
11 lines
225 B
HTML
|
{{ define "main" }}
|
||
|
<article class="post">
|
||
|
<header class="post-header">
|
||
|
<h2 class="post-header__title">{{ .Title }}</h2>
|
||
|
</header>
|
||
|
<section class="post-content">
|
||
|
{{ .Content }}
|
||
|
</section>
|
||
|
</article>
|
||
|
{{ end }}
|