diff options
Diffstat (limited to 'themes/hugo-xmin/layouts')
| -rw-r--r-- | themes/hugo-xmin/layouts/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/hugo-xmin/layouts/index.html b/themes/hugo-xmin/layouts/index.html index e3b9abe..2d7383e 100644 --- a/themes/hugo-xmin/layouts/index.html +++ b/themes/hugo-xmin/layouts/index.html @@ -12,10 +12,10 @@ {{ end }} </ul> -<h2>Posts:</h2> +<h2>Articles:</h2> <ul> {{ $pages := .Site.RegularPages }} - {{ range (where $pages "Section" "posts") }} + {{ range (where $pages "Section" "articles") }} <li> <span class="date">{{ .Date.Format "01/02/2006" }}</span> <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a> @@ -23,4 +23,4 @@ {{ end }} </ul> -{{ partial "footer.html" . }}
\ No newline at end of file +{{ partial "footer.html" . }} |