forked from planex/defiance
use default entry list instead
This commit is contained in:
parent
6a4b0e5844
commit
962a17604e
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
<h1>{{ .Title }}</h1>
|
<h1>{{ .Title }}</h1>
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
<ul id="artlist">
|
<ul id="artlist">
|
||||||
{{ range .Pages.ByPublishDate.Reverse }}
|
{{ range .Pages }}
|
||||||
<li data-tags="{{.Params.Tags}}">
|
<li data-tags="{{.Params.Tags}}">
|
||||||
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
||||||
{{ partial "metadata.html" . }}
|
{{ partial "metadata.html" . }}
|
||||||
|
|
|
@ -6,6 +6,6 @@
|
||||||
{{ with .Params.tags }}
|
{{ with .Params.tags }}
|
||||||
{{ range . }}
|
{{ range . }}
|
||||||
{{ $href := print (absURL "tags/") (urlize .) }}
|
{{ $href := print (absURL "tags/") (urlize .) }}
|
||||||
<a href="{{ $href }}">{{ . }}</a>
|
<a class="tag" href="{{ $href }}">{{ . }}</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
Loading…
Add table
Reference in a new issue