{{ define "title" }}issues · {{ .RepoInfo.FullName }}{{ end }} {{ define "extrameta" }} {{ $title := "issues"}} {{ $url := printf "https://tangled.org/%s/issues" .RepoInfo.FullName }} {{ template "repo/fragments/og" (dict "RepoInfo" .RepoInfo "Title" $title "Url" $url) }} {{ end }} {{ define "repoContent" }} {{ $active := "closed" }} {{ if .FilteringByOpen }} {{ $active = "open" }} {{ end }} {{ $open := (dict "Key" "open" "Value" "open" "Icon" "circle-dot" "Meta" (string .RepoInfo.Stats.IssueCount.Open)) }} {{ $closed := (dict "Key" "closed" "Value" "closed" "Icon" "ban" "Meta" (string .RepoInfo.Stats.IssueCount.Closed)) }} {{ $values := list $open $closed }}