diff options
Diffstat (limited to 'layouts/posts')
-rw-r--r-- | layouts/posts/list.html | 6 | ||||
-rw-r--r-- | layouts/posts/single.html | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/layouts/posts/list.html b/layouts/posts/list.html index 18871f2..13e1ea1 100644 --- a/layouts/posts/list.html +++ b/layouts/posts/list.html @@ -1,15 +1,15 @@ {{ define "main" }} - {{- $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat -}} + {{ $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat }} {{ $paginator := .Paginate (where .Pages "Params.hidden" "ne" true) }} {{ range sort .Paginator.Pages }} - <article> + <article class="markdown"> <h2> <a href="{{ .RelPermalink }}">{{ .Title }}</a> </h2> <h5> <strong>{{ .Date.Format $dateFormat }}</strong> </h5> - <p class="markdown"> + <p> {{- .Summary -}} {{ if .Truncated }} <a href="{{ .RelPermalink }}">...</a> diff --git a/layouts/posts/single.html b/layouts/posts/single.html index a7f94ed..9222a59 100644 --- a/layouts/posts/single.html +++ b/layouts/posts/single.html @@ -1,6 +1,6 @@ {{ define "main" }} -{{- $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat -}} -<header> +{{ $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat }} +<header class="markdown"> <h1>{{ .Title }}</h1> <h5> <strong>{{ .Date.Format $dateFormat }}</strong> |