Navigation with .Site.Params

Hello. I have params “review” in config.toml

[[params.reviews]]
  text = "text 1"
  en = 1
  ru = 1

[[params.reviews]]
  text = "text 2"
  en = 1
  ru = 1

I have Section feedback.

Now I want to create the Section of params reviews with pagination.

I tried something that

				<ul>
  {{ range $index, .Paginator.Pages }}
    {{ .Render "blog_section.li" }}
  {{ end }}
  
  
{{ range where .Site.Params.reviews.en "1"  }}
{{ end }}					
				</ul>
				{{ partial "pagination" . }}

but it didn’t work.

Can you help me?