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.

10 lines
227 B

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