Welcome to mirror list, hosted at ThFree Co, Russian Federation.

author.html « partials « layouts - github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9b45ff6fa4fe6d85fd65df24af8310852a830f0 (plain)
1
2
3
4
5
6
{{ with .Page.Param "Author" }}
    {{ $hosts := where $.Site.RegularPages ".Section" "host" }}
    {{ $filesWithAuthor := where $.Site.RegularPages ".File.BaseFileName" . }}
    {{ $author := index ($filesWithAuthor | intersect $hosts) 0 }}
    by <a href="{{ $author.Permalink}} ">{{ $author.Title }}</a>
{{ end }}