talksapp: enable notes for all talks

Change-Id: Ibfdf997062082bbd4226111085b33788dbd7282f
Reviewed-on: https://go-review.googlesource.com/27554
Reviewed-by: Chris Broadfoot <cbro@golang.org>
diff --git a/talksapp/main.go b/talksapp/main.go
index fa58533..0dbe172 100644
--- a/talksapp/main.go
+++ b/talksapp/main.go
@@ -93,13 +93,10 @@
 	}
 	data := struct {
 		*present.Doc
-		Template    *template.Template
-		PlayEnabled bool
-	}{
-		doc,
-		t,
-		true,
-	}
+		Template     *template.Template
+		PlayEnabled  bool
+		NotesEnabled bool
+	}{doc, t, true, true}
 	return t.Execute(w, &data)
 }