diff --git a/core/section/trello/boards_template.go b/core/section/trello/boards_template.go
index 062fd4d5..a963106c 100644
--- a/core/section/trello/boards_template.go
+++ b/core/section/trello/boards_template.go
@@ -13,7 +13,7 @@ package trello
const boardsTemplate = `
-
All Boards
+Boards
Changes since {{.Since}}.
diff --git a/core/section/trello/labels_template.go b/core/section/trello/labels_template.go
index 60b809f4..e34a3882 100644
--- a/core/section/trello/labels_template.go
+++ b/core/section/trello/labels_template.go
@@ -12,24 +12,26 @@
package trello
const labelsTemplate = `
-Labels
-There are {{len .SharedLabels}} common labels across the boards.
-
-
-
- {{range $l := .SharedLabels}}
-
-
- {{ $l.Name }} ({{len $l.Boards}})
- |
-
- {{range $brd := $l.Boards}}
- {{ $brd }},
- {{end}}
- |
-
- {{end}}
-
-
-
+{{if gt (len .SharedLabels) 0}}
+ Labels
+ There are {{len .SharedLabels}} common labels across the boards.
+
+
+
+ {{range $l := .SharedLabels}}
+
+
+ {{ $l.Name }} ({{len $l.Boards}})
+ |
+
+ {{range $brd := $l.Boards}}
+ {{ $brd }},
+ {{end}}
+ |
+
+ {{end}}
+
+
+
+{{end}}
`
diff --git a/core/section/trello/master_template.go b/core/section/trello/master_template.go
index 0faa6b70..0dc5a2c2 100644
--- a/core/section/trello/master_template.go
+++ b/core/section/trello/master_template.go
@@ -11,9 +11,8 @@
package trello
-const renderTemplate = `
-Header for Trello Multi-Board Test (in master_template.go)
-` + labelsTemplate +
+const renderTemplate = `` +
+ labelsTemplate +
boardsTemplate +
graphsTemplate +
membersTemplate +