{{define "results"}} {{.PageTitle}} - Results

{{.PageTitle}}

{{if .IsScoreResult}}

Score Article

{{if .Error}}
{{.Error}}
If URL is provided, title will be automatically extracted
{{else}}
{{.Rating}}/10

Score: {{printf "%.3f" .Score}}

{{.Title}}

If URL is provided, title will be automatically extracted
{{end}}

Scan Feed

{{else if .IsScanResult}}

Score Article

If URL is provided, title will be automatically extracted

Scan Feed

{{if .Error}}
{{.Error}}
{{else}}
{{len .Articles}} articles from {{.FeedURL}} (threshold: {{printf "%.2f" .Threshold}})
{{$threshold := .Threshold}} {{range .Articles}} {{$isGood := ge .Score $threshold}} {{$bgColor := "white"}} {{if $isGood}} {{$bgColor = "#e8f5e9"}} {{else}} {{$bgColor = "#ffebee"}} {{end}} {{$indicator := "✗"}} {{if $isGood}} {{$indicator = "✓"}} {{end}}
{{.Title}}
{{end}}
{{end}}
{{end}}
{{end}}