comments.html 507 B

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