Browse Source

fix: comment provider not found (#2165)

Hugo v0.80.0 `Exists` function requires file extension unlike Hugo's Partial statement
Arho Huttunen 4 years ago
parent
commit
3cf9f6cdee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      wowchemy/layouts/partials/comments.html

+ 1 - 1
wowchemy/layouts/partials/comments.html

@@ -1,7 +1,7 @@
 {{ $provider := trim (site.Params.comments.provider | lower) " " }}
 
 {{ if $provider }}
-  {{ $provider_tpl := printf "partials/comments/%s" $provider }}
+  {{ $provider_tpl := printf "partials/comments/%s.html" $provider }}
   {{ $provider_exists := templates.Exists $provider_tpl }}
   {{ if not $provider_exists }}
     {{ errorf "The '%s' comment provider was not found." $provider }}