소스 검색

fix: don't show address in Contact if it's slice of empty strings

An alternative is to comment out the `address` in Params if it's unused.
George Cushen 5 년 전
부모
커밋
d486867326
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      layouts/partials/widgets/contact.html

+ 1 - 1
layouts/partials/widgets/contact.html

@@ -64,7 +64,7 @@
       {{ end }}
 
       {{ $addr_formatted := "" }}{{/* Scoping for maps. */}}
-      {{ if $data.address }}
+      {{ if $data.address.street | or $data.address.city | or $data.address.region | or $data.address.postcode | or $data.address.country }}
         {{ $addr := slice }}
         {{with $data.address.street}}{{$addr = $addr | append .}}{{end}}
         {{with $data.address.city}}{{$addr = $addr | append .}}{{end}}