diff --git a/layouts/partials/commons/contact-details.html b/layouts/partials/commons/contact-details.html
index e640d67a5a0010bffcb8a24a237b090b8e74d179..b9f1aff3739bb92d75d93f259d5b6bf916c26985 100644
--- a/layouts/partials/commons/contact-details.html
+++ b/layouts/partials/commons/contact-details.html
@@ -21,31 +21,31 @@
             "in_itemscope" true
           ) }}
       </ul>
+    {{ end }}
 
-      {{ if or .phone_numbers .phone_professional .postal_address }}
-        <ul>
-          {{ with .postal_address }}
-            <li class="address">
-              <span class="meta">{{ i18n "commons.contact.address" }}</span>
-              {{ partial "commons/address.html" . }}
+    {{ if or .phone_numbers .phone_professional .postal_address }}
+      <ul>
+        {{ with .postal_address }}
+          <li class="address">
+            <span class="meta">{{ i18n "commons.contact.address" }}</span>
+            {{ partial "commons/address.html" . }}
+          </li>
+        {{ end }}
+        {{ with .phone_numbers }}
+          {{ with or .phone_mobile .phone }}
+            <li class="phone">
+              <span>{{ i18n "commons.contact.phone.label" }}</span>
+              <a href="{{ chomp .value | safeURL }}" itemprop="telephone" title='{{ safeHTML (i18n "commons.contact.phone.a11y_label" (dict "phone_number" .label )) }}'>{{ .label }}</a>
             </li>
           {{ end }}
-          {{ with .phone_numbers }}
-            {{ with or .phone_mobile .phone }}
-              <li class="phone">
-                <span>{{ i18n "commons.contact.phone.label" }}</span>
-                <a href="{{ chomp .value | safeURL }}" itemprop="telephone" title='{{ safeHTML (i18n "commons.contact.phone.a11y_label" (dict "phone_number" .label )) }}'>{{ .label }}</a>
-              </li>
-            {{ end }}
-            {{ with .phone_professional }}
-              <li class="phone">
-                <span>{{ i18n "commons.contact.phone_professional.label" }}</span>
-                <a href="{{ chomp .value | safeURL }}" itemprop="telephone" title='{{ safeHTML (i18n "commons.contact.phone_professional.a11y_label" (dict "phone_number" .label )) }}'>{{ .label }}</a>
-              </li>
-            {{ end }}
+          {{ with .phone_professional }}
+            <li class="phone">
+              <span>{{ i18n "commons.contact.phone_professional.label" }}</span>
+              <a href="{{ chomp .value | safeURL }}" itemprop="telephone" title='{{ safeHTML (i18n "commons.contact.phone_professional.a11y_label" (dict "phone_number" .label )) }}'>{{ .label }}</a>
+            </li>
           {{ end }}
-        </ul>
-      {{ end }}
+        {{ end }}
+      </ul>
     {{ end }}
   </div>
 {{ end }}