+
+ {{/* The one number the page leads with. Everything else is a tile. */}}
+
+
+ {{ printf "%.1fM" (div (float $stats.pepy_downloads) 1000000.0) }}
+ downloads of the core packages, all time
+
+ {{ lang.FormatNumberCustom 0 $stats.pepy_avg_daily_30 }} a day on average over the last 30 days
+
+
+ {{ lang.FormatNumberCustom 0 $contributors.total_contributors }} people have contributed code to the core
+ packages, ranked here by number of commits.
+
+
+ {{ $shown := 24 }}
+ {{ $top := first $shown $contributors.contributors }}
+ {{ $rest := after $shown $contributors.contributors }}
+ {{ $most := (index $top 0).contributions }}
+
+ {{ range $top }}
+ {{ partial "stats-contributor.html" (dict "person" . "most" $most) }}
+ {{ end }}
+
+
+ {{ with $rest }}
+
+ Show the other {{ lang.FormatNumberCustom 0 (len .) }} contributors
+
+ {{ range . }}
+ {{ partial "stats-contributor.html" (dict "person" . "most" $most) }}
+ {{ end }}
+
+
+ {{ end }}
+
+