use default entry list instead

This commit is contained in:
ch0ccyra1n 2022-09-06 14:09:19 -07:00
parent 6a4b0e5844
commit 962a17604e
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul id="artlist">
{{ range .Pages.ByPublishDate.Reverse }}
{{ range .Pages }}
<li data-tags="{{.Params.Tags}}">
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{ partial "metadata.html" . }}

View file

@ -6,6 +6,6 @@
{{ with .Params.tags }}
{{ range . }}
{{ $href := print (absURL "tags/") (urlize .) }}
<a href="{{ $href }}">{{ . }}</a>
<a class="tag" href="{{ $href }}">{{ . }}</a>
{{ end }}
{{ end }}