Regis Philibert f2ba99b7d2 Start of work
2021-06-14 15:31:06 -04:00

18 lines
508 B
HTML

{{/*
*/}}
{{ $socials := slice }}
{{ with partial "func/socials/GetProjectServices" "GetProjectServices" }}
{{ range . }}
{{ $service := . }}
{{ with partialCached "func/socials/GetServiceData" .name .name }}
{{ $service = merge . $service }}
{{ end }}
{{ with partialCached "func/socials/GetServiceIcon" .name .name }}
{{ $service = $service | merge (dict "icon" . ) }}
{{ end }}
{{ $socials = $socials | append $service }}
{{ end }}
{{ end }}
{{ return $socials }}