diff --git a/themes/hugo-xmin/layouts/_default/list.html b/themes/hugo-xmin/layouts/_default/list.html index 6e341cc..bf692e1 100644 --- a/themes/hugo-xmin/layouts/_default/list.html +++ b/themes/hugo-xmin/layouts/_default/list.html @@ -11,16 +11,16 @@ {{ $pages := .Pages }} {{ $paginator := .Paginate (where $pages "Section" "!=" "") }} - {{ if (eq .Type "tips") }} + {{ if (eq .Type "posts") }} {{ range sort $paginator.Pages ".Title" }}
  • + {{ .Date.Format "2006/01/02" }} {{ .Title | markdownify }}
  • {{ end }} {{ else }} {{ range sort $paginator.Pages }}
  • - {{ .Date.Format "2006/01/02" }} {{ .Title | markdownify }}
  • {{ end }}