layouts/shortcodes/blocks/contact-us.html (14 lines of code) (raw):
{{ $contacts := site.Data.contacts -}}
<section class="home--top-section">
<h2>联系社区</h2>
<div class="c-contacts">
{{ range $contacts -}}
{{ $img := printf "img/contacts/%s" .image | relURL -}}
<div class="c-contact">
<a href="{{ .link }}" aria-label="{{ .name }}" target="_blank" rel="noopener">
<img class="contact-picture" src="{{ $img }}" alt="{{ .name }} logo">
</a>
</div>
{{- end }}
</div>
</section>