minor formatting and text

This commit is contained in:
2025-10-29 15:19:24 +00:00
parent 07f7a50b77
commit e2b30c0234

View File

@@ -1,18 +1,39 @@
{{ define "content" }}
<div class="wrap">
<h1>Thunderball Statistics</h1>
<h1>Thunderball Statistics</h1>
<p>
Discover everything you need to supercharge your Thunderball picks! Explore which numbers have been drawn the most, which ones are the rarest,
and even which lucky pairs and triplets keep showing up again and again. You can also check out which numbers are long overdue for a win perfect
for anyone playing the waiting game!
</p>
<div class="grid">
<div class="card">
<h3>Top 5 (since {{.Since}})</h3>
<table>
<thead><tr><th>Number</th><th>Frequency</th></tr></thead>
<tbody>
{{range .TopSince}}
<tr><td>{{.Number}}</td><td>{{.Frequency}}</td></tr>
{{end}}
</tbody>
</table>
</div>
<p>
All statistics are based on every draw from <i><b>9th May 2010</b></i> right through to (since {{.LastDraw}}), covering the current ball pool of 139.
</p>
<p>
Feeling curious about the earlier era of Thunderball draws? Dive into the historical Thunderball statistics to uncover data from before 9th May 2010, back when the ball pool ranged from 134.
</p>
<div class="grid">
<div class="card">
<h3>Top 5 (since {{.Since}})</h3>
<table>
<thead>
<tr>
<th>Number</th>
<th>Frequency</th>
</tr>
</thead>
<tbody>
{{range .TopSince}}
<tr>
<td>{{.Number}}</td>
<td>{{.Frequency}}</td>
</tr>
{{end}}
</tbody>
</table>
</div>
</div>
</div>
{{end}}