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/single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'layouts/_default/single.html') diff --git a/layouts/_default/single.html b/layouts/_default/single.html index e0b2f94..61d009d 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,7 +1,7 @@ -{{ template "theme/partials/head.html" . }} +{{ partial "head.html" . }} -{{ template "theme/partials/sidebar.html" . }} +{{ partial "sidebar.html" . }}
-- cgit v1.2.1-24-ge1ad