oxil-net1
Version:
Oxford Information Labs Netistrar Theme
19 lines (11 loc) • 406 B
HTML
{{- $author := .Get "author" -}}
{{- $excluded := .Get "category" -}}
{{ $pages := .Site.RegularPages }}
{{ $blogPages := where $pages "Section" "blog" }}
{{ $arts := slice }}
{{- range $blogPages }}
{{- $page := . -}}
{{- if in .Params.authors $author | and (not (in .Params.categories $excluded)) | and (ne .Params.sticky "true") }}
{{- $arts = $arts | append $page -}}
{{- end -}}
{{- end -}}