Disqus partial template was accidentally included in both single.html and the posts/pages that were included by single.html. Only need to include it once!
25 lines
427 B
HTML
25 lines
427 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
|
|
{{ partial "nav.html" . }}
|
|
|
|
<div role="main" class="container main-content">
|
|
|
|
{{ if eq .Type "post" }}
|
|
{{ partial "post.html" . }}
|
|
{{ else if eq .Type "page" }}
|
|
{{ partial "page.html" . }}
|
|
{{ else }}
|
|
NO MATCHING PARTIAL
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
</body>
|
|
</html>
|