diff options
Diffstat (limited to 'layouts')
| -rw-r--r-- | layouts/_default/single.html | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index a8257e9..78c5ccb 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,11 +1,9 @@ {{ define "main" }} -<article> - <h1>{{ .Title }}</h1> - <p class="meta"> - {{ if gt .Date.Unix 0 }} - <time datetime="{{ .Date.Format "2006-01-02T15:04:05-07:00" }}">{{ .Date.Format "January 2, 2006" }}</time> - {{ end }} - </p> - {{ .Content }} -</article> +<h1>{{ .Title }}</h1> +<p class="meta"> + {{ if gt .Date.Unix 0 }} + <time datetime="{{ .Date.Format "2006-01-02T15:04:05-07:00" }}">{{ .Date.Format "January 2, 2006" }}</time> + {{ end }} +</p> +{{ .Content }} {{ end }}
\ No newline at end of file |
