nemhugo/layouts/_default/single.html
Michael Romero 991e2aeaf7 Remove unnecessary Disqus partial template
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!
2016-04-13 00:06:02 -07:00

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>