[Question] Possible get my introduction string dynamic change depend on url in term.html by using config.toml?

Hey @pointyfar . Thanks for your help once again. As usual, you always help me solve my problem. But this time, i’m facing another one. I’m not sure what is wrong from my side.

<!-- content/danh-muc/frontend/_index.md -->
---
detail: "About Frontend"
...
---

In my term.html. I’m also using pagination one. I updated with your code

{{ define "main" }}

<div class="container">
   <div class="mt-2 ">
      <h1 style="background-color:red;">
         {{ .Params.detail }}
      </h1>
   </div>
   <!-- pagenation here with 4 posts per page -->
   {{ range (.Paginator 4).Pages }}
{{ partial "postli.html" . }}
  {{ end }}
  {{ partial "pagination.html" . }}
  {{end}}  

I’m following this post to get my pagination
Pagination
Look like after i create _index.md to content/danh-muc/frontend/. My pagination is not working. It empty.