aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index a94a9b9..3b9cfec 100644
--- a/README.md
+++ b/README.md
@@ -133,10 +133,10 @@ Using it inside of a template.
133```html 133```html
134{{ range .Pages }} 134{{ range .Pages }}
135 {{ if eq .Type "post" }} 135 {{ if eq .Type "post" }}
136 <li> 136 <li>
137 <a href="/{{ .RelPermalink }}">{{ .Title }}</a> 137 <a href="/{{ .RelPermalink }}">{{ .Title }}</a>
138 <div>{{ .Created.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div> 138 <div>{{ .Created.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div>
139 </li> 139 </li>
140 {{ end }} 140 {{ end }}
141{{ end }} 141{{ end }}
142``` 142```