Reverse list to get the newest talk on top

This commit is contained in:
Felix Breidenstein 2020-04-02 23:58:38 +02:00
parent 9ad0e4175f
commit 642af5ea76

View file

@ -54,6 +54,11 @@ func main() {
data = append(data, t)
}
for i := len(data)/2 - 1; i >= 0; i-- {
opp := len(data) - 1 - i
data[i], data[opp] = data[opp], data[i]
}
tmpl, err := template.ParseFiles("template.html")
if err != nil {
panic(err)