I have a section defined in my site called blog
. I am starting to make heavy use of block templates, and they are working everywhere else.
However, this snippet of code doesn’t render any text when I load http://localhost:1313/blog/:
{{- define "main" -}}
<div class="row">
<div class="col-md-12">
<h1>Blog Posts</h1>
<div>
{{ range .Paginator.Pages }}
{{ .Render "summary"}}
{{ end }}
{{ partial "blog_pagination.html" . }}
</div>
</div>
</div>
{{- end -}}
But this does:
<div class="row">
<div class="col-md-12">
<h1>Blog Posts</h1>
<div>
{{ range .Paginator.Pages }}
{{ .Render "summary"}}
{{ end }}
{{ partial "blog_pagination.html" . }}
</div>
</div>
</div>