diff options
Diffstat (limited to 'layouts/posts/single.html')
-rw-r--r-- | layouts/posts/single.html | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/layouts/posts/single.html b/layouts/posts/single.html index f31b1a9..9081faa 100644 --- a/layouts/posts/single.html +++ b/layouts/posts/single.html @@ -1,11 +1,9 @@ {{ define "main" }} -<section> - <header> - <h1>{{ .Title }}</h1> - <h5>{{ .Date.Format "January 2, 2006" }}</h5> - </header> - <article class="markdown"> - {{- .Content -}} - </article> -</section> +<header> + <h1>{{ .Title }}</h1> + <h5>{{ .Date.Format "January 2, 2006" }}</h5> +</header> +<article class="markdown"> + {{- .Content -}} +</article> {{ end }}
\ No newline at end of file |