aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/content/en/templates/lists/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/templates/lists/index.md')
-rw-r--r--docs/content/en/templates/lists/index.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/content/en/templates/lists/index.md b/docs/content/en/templates/lists/index.md
index 204cbcbcc..ec397c32b 100644
--- a/docs/content/en/templates/lists/index.md
+++ b/docs/content/en/templates/lists/index.md
@@ -166,13 +166,13 @@ This list template has been modified slightly from a template originally used in
{{ partial "subheader.html" . }}
<main>
<div>
- <h1>{{ .Title }}</h1>
- <ul>
- <!-- Renders the li.html content view for each content/posts/*.md -->
- {{ range .Pages }}
- {{ .Render "li" }}
- {{ end }}
- </ul>
+ <h1>{{ .Title }}</h1>
+ <ul>
+ <!-- Renders the li.html content view for each content/posts/*.md -->
+ {{ range .Pages }}
+ {{ .Render "li" }}
+ {{ end }}
+ </ul>
</div>
</main>
{{ partial "footer.html" . }}
@@ -184,10 +184,10 @@ This list template has been modified slightly from a template originally used in
{{ define "main" }}
<main>
<div>
- <h1>{{ .Title }}</h1>
- <!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
+ <h1>{{ .Title }}</h1>
+ <!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
{{ range .Pages }}
- {{ .Render "summary" }}
+ {{ .Render "summary" }}
{{ end }}
</div>
</main>