Hugo theme.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
197 B

  1. {{ define "main" }}
  2. <h1>{{ .Title }}</h1>
  3. <div id=articles>
  4. {{ range .Paginator.Pages }}
  5. {{ .Render "li" }}
  6. {{ end }}
  7. </div>
  8. {{ template "_internal/pagination.html" . }}
  9. {{ end }}