pages/layouts/people/list.html

13 lines
427 B
HTML

{{ define "main" }}
<div class="account-list">
{{ $isMe := eq .Title "Thomas A. Christensen II" }}
{{ range $account, $username := .Params.accounts }}
{{ partial "account.html" (dict "account" $account "username" $username "isMe" $isMe) }}
{{ end }}
</div>
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
{{ end }}