{{- range . }}
{{- if eq .name "wechat" }}
{{- /* WeChat has no clickable profile URL — render a button that opens an
on-site contact card (QR + WeChat ID) instead of a dead link.
The QR is served resized/optimised via Hugo Pipes when available,
falling back to the raw static asset. */ -}}
{{- $qrSrc := .qr | relURL -}}
{{- with resources.Get "wechat.jpg" -}}
{{- $prod := (hugo.IsProduction | or (eq site.Params.env "production")) -}}
{{- if and hugo.IsExtended $prod -}}
{{- $qrSrc = (.Resize "440x webp q88").RelPermalink -}}
{{- else -}}
{{- $qrSrc = (.Resize "440x q88").RelPermalink -}}
{{- end -}}
{{- end -}}
{{- else }}
{{ partial "svg.html" . }}
{{- end }}
{{- end }}