aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/page/now.gohtml4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/page/now.gohtml b/templates/page/now.gohtml
index 5286f87..96c8b77 100644
--- a/templates/page/now.gohtml
+++ b/templates/page/now.gohtml
@@ -9,7 +9,9 @@
<div class="tags" style="{{ .Color.GetTagColor }}">
{{ range $now := .Person.Now }}
<div class="tag">
- <h4>{{ .Name }}</h4>
+ {{ if ne .Name "" }}
+ <h4>{{ .Name }}</h4>
+ {{ end }}
<p>{{ .Description }}</p>
{{ if and (ne .Link "") (ne .LinkName "") }}
<p><a href="{{ .Link }}">{{ .LinkName }}</a></p>