From 17a69ee6307a643777a851b31fd5b498e200aa76 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 7 Jun 2014 09:57:40 +0100 Subject: Add missing div closing tag --- layouts/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'layouts/index.html') diff --git a/layouts/index.html b/layouts/index.html index 320b975..b8c9d65 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -20,7 +20,7 @@ {{ end }} - + -- cgit 1.4.1 From e1a4df05e8607090d012eb806fd47f58b46e7f0e Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Wed, 3 Sep 2014 18:47:06 -0600 Subject: Use `partial` call to include partial templates Replace `template` call with the `partial` call (new in Hugo v0.12) for including partial templates --- layouts/_default/list.html | 4 ++-- layouts/_default/single.html | 4 ++-- layouts/index.html | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'layouts/index.html') diff --git a/layouts/_default/list.html b/layouts/_default/list.html index b911013..f19a26f 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,7 +1,7 @@ -{{ template "theme/partials/head.html" . }} +{{ partial "head.html" . }} - {{ template "theme/partials/sidebar.html" . }} +{{ partial "sidebar.html" . }}