{{/* Author profile page. */}}
{{ partial "header.html" . }}
{{ partial "navbar.html" . }}
{{/* If an account has not been created for this user, just display their name as the title. */}}
{{ if not .File }}
{{ .Title }}
{{ end }}
{{/* Show the About widget if an account exists for this user. */}}
{{ if .File }}
{{ $widget := "widgets/about.html" }}
{{ $slug := delimit (last 1 (split (trim .File.Dir "/") "/")) "" }}{{/* Alternatively, use `index .Params.authors 0` */}}
{{ $params := dict "root" $ "page" . "author" $slug }}
{{ partial $widget $params }}
{{end}}
{{ $query := where .Pages ".IsNode" false }}
{{ $count := len $query }}
{{ if $count }}