mirror of https://github.com/jpanther/congo.git
parent
f0b86e6c27
commit
6a904413a8
|
@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
- List page doesn't render nested list pages ([#365](https://github.com/jpanther/congo/issues/365))
|
||||||
- Pagination is duplicated on term pages ([#366](https://github.com/jpanther/congo/issues/366))
|
- Pagination is duplicated on term pages ([#366](https://github.com/jpanther/congo/issues/366))
|
||||||
|
|
||||||
## [2.4.0] - 2022-11-10
|
## [2.4.0] - 2022-11-10
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ range .Paginator.Pages }}
|
{{ range (.Paginate .Pages).Pages }}
|
||||||
{{ partial "article-link.html" . }}
|
{{ partial "article-link.html" . }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ range .Paginator.Pages }}
|
{{ range (.Paginate .Pages).Pages }}
|
||||||
{{ partial "article-link.html" . }}
|
{{ partial "article-link.html" . }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in New Issue