diff options
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/single.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index f74ec16..b3783eb 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -13,14 +13,19 @@ </header> <div class="content e-content"> {{ .Content }} + {{ if in .Params.categories "book review" }} + <hr> + {{ i18n "BookShare" }} + {{ end }} </div> {{ partial "postInfo.html" . }} </article> {{ if and (.Site.Params.paginationSinglePost) (ne .Type "page") }} -{{ partial "paginationPost.html" . }} + {{ partial "paginationPost.html" . }} {{ end }} + {{ partial "custom-webring.html" }} {{ end }} |