aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/content/en/templates/section-templates.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/templates/section-templates.md')
-rw-r--r--docs/content/en/templates/section-templates.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/docs/content/en/templates/section-templates.md b/docs/content/en/templates/section-templates.md
index db8ffd667..55a6c3004 100644
--- a/docs/content/en/templates/section-templates.md
+++ b/docs/content/en/templates/section-templates.md
@@ -46,17 +46,17 @@ Examples:
{{< code file="layouts/_default/section.html" >}}
{{ define "main" }}
<main>
- {{ .Content }}
- <ul class="contents">
- {{ range .Paginator.Pages }}
- <li>{{ .Title }}
- <div>
- {{ partial "summary.html" . }}
- </div>
- </li>
- {{ end }}
- </ul>
- {{ partial "pagination.html" . }}
+ {{ .Content }}
+ <ul class="contents">
+ {{ range .Paginator.Pages }}
+ <li>{{ .Title }}
+ <div>
+ {{ partial "summary.html" . }}
+ </div>
+ </li>
+ {{ end }}
+ </ul>
+ {{ partial "pagination.html" . }}
</main>
{{ end }}
{{< /code >}}