Swap element order.

This commit is contained in:
Philipp Winter 2024-05-25 11:42:03 -05:00
parent 86851681b7
commit a52d81c90e

View file

@ -100,8 +100,8 @@ func run(w io.Writer, bibEntries []bibEntry) {
fmt.Fprint(w, header())
fmt.Fprintln(w, "<div id='container'>")
makeBib(w, bibEntries)
fmt.Fprint(w, footer())
fmt.Fprintln(w, "</div>")
fmt.Fprint(w, footer())
}
func main() {