comments.html 390 B

123456789
  1. {{ if site.Params.comments.engine | and (index site.Params.comments.commentable .Type) | and (ne .Params.commentable false) | or .Params.commentable }}
  2. <section id="comments">
  3. {{ if eq site.Params.comments.engine 1 }}
  4. {{ partial "comments/disqus.html" . }}
  5. {{ else if eq site.Params.comments.engine 2 }}
  6. {{ partial "comments/commento.html" . }}
  7. {{ end }}
  8. </section>
  9. {{ end }}