Skip to content

Commit a4ec80f

Browse files
Merge pull request #43 from NullHypothesis/fix-html
Swap element order.
2 parents 8685168 + a52d81c commit a4ec80f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ func run(w io.Writer, bibEntries []bibEntry) {
100100
fmt.Fprint(w, header())
101101
fmt.Fprintln(w, "<div id='container'>")
102102
makeBib(w, bibEntries)
103-
fmt.Fprint(w, footer())
104103
fmt.Fprintln(w, "</div>")
104+
fmt.Fprint(w, footer())
105105
}
106106

107107
func main() {

0 commit comments

Comments
 (0)