{{ with .Params.date }}
{{ end }}
{{ if .Params.categories }}
Categories:
{{ range $cat_name := .Params.categories }}
{{ $cat := ($.Site.GetPage (printf "/categories/%s" $cat_name | urlize )) }}
- {{ $cat_name }}
{{ end }}
{{ end }}
{{ if .Params.tags }}
Tags:
{{ range $tag_name := .Params.tags }}
{{ $tag := ($.Site.GetPage (printf "/tags/%s" $tag_name | urlize )) }}
- #{{ $tag_name }}
{{ end }}
{{ end }}