hugo-internet-weblog/layouts/partials/preview_list.html
2016-02-19 23:35:42 -05:00

19 lines
531 B
HTML

{{ $paginator := .Paginate (where .Data.Pages "Type" "!=" "page") }}
{{ range .Paginator.Pages }}
{{ $url := replace .Permalink .Site.BaseURL "" }}
{{ if or (eq .Type "microposts") (eq .Type "micropost") }}
{{ partial "preview_micropost.html" . }}
{{ end }}
{{ if or (eq .Type "photos") (eq .Type "photo") }}
{{ partial "preview_photo_post.html" . }}
{{ end }}
{{ if or (eq .Type "posts") (eq .Type "post") }}
{{ partial "preview_post.html" . }}
{{ end }}
{{ end }}
{{ partial "pagination.html" . }}