Procházet zdrojové kódy

fix: comment provider not found (#2165)

Hugo v0.80.0 `Exists` function requires file extension unlike Hugo's Partial statement
Arho Huttunen před 4 roky
rodič
revize
3cf9f6cdee
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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 }}