diff options
| author | Hunter Kvalevog <hunter@kvog.sh> | 2026-04-25 15:58:58 -0500 |
|---|---|---|
| committer | Hunter Kvalevog <hunter@kvog.sh> | 2026-04-25 15:58:58 -0500 |
| commit | 94c0a10fd3adc4b8d10c109b2d4502f8d8a390fe (patch) | |
| tree | 5c1ee5ef9b70137b372a97303782f5c88f8d1374 /themes/hugo-xmin | |
| parent | f7e586e6533974489503538ac140a7ce5608ecb7 (diff) | |
Diffstat (limited to 'themes/hugo-xmin')
| -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" . }} |