Skip to content

Commit

Permalink
fix: correct limit and count options (#557)
Browse files Browse the repository at this point in the history
  • Loading branch information
razonyang committed Dec 16, 2023
1 parent dc947ed commit f2599ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layouts/partials/hb/modules/blog/taxonomies/default.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{- $limit := default 10 .limit }}
{{- $count := default true .count }}
{{- range $name, $taxonomy := site.Taxonomies }}
{{- $limit := 10 }}
{{- $count := true }}
{{- $idx := 0 }}
<div class="taxonomy-terms hb-module">
{{- with site.GetPage $name }}
Expand Down

0 comments on commit f2599ed

Please sign in to comment.