diff --git a/templates/office-hours.html.twig b/templates/office-hours.html.twig
index da5139b..147776c 100644
--- a/templates/office-hours.html.twig
+++ b/templates/office-hours.html.twig
@@ -1,9 +1,15 @@
 <div class="office-hours">
   {% for item in items %}
     <div class="office-hours__item">
-      <span class="office-hours__item-label" style="width: {{ label_length * 0.60 }}em;">{{ item.label }}</span>
-      <span class="office-hours__item-slots"> {{ item.slots }}</span>
-      <span class="office-hours__item-comments">{{ item.comments }}</span>
+     {% if item.label %}
+        <span class="office-hours__item-label" style="width: {{ label_length * 0.60 }}em;">{{ item.label }}</span>
+      {% endif %}
+      {% if item.slots %}  
+        <span class="office-hours__item-slots"> {{ item.slots }}</span>
+      {% endif %}
+      {% if item.comments %}
+        <span class="office-hours__item-comments">{{ item.comments }}</span>
+      {% endif %}  
       <br />
     </div>
   {% endfor %}
