aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/partials/social_links.html
blob: 97588918b7c1a691a3d3c9997b476da44f3b4597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ range .social }}
  {{ $link := .link }}
  {{ $scheme := (urls.Parse $link).Scheme }}
  {{ $target := "" }}
  {{ if not $scheme }}
    {{ $link = .link | relLangURL }}
  {{ else if in (slice "http" "https") $scheme }}
    {{ $target = "target=\"_blank\" rel=\"noopener\"" }}
  {{ end }}
  <a
    href="{{ $link | safeURL }}"
    {{ $target | safeHTMLAttr }}
  >
    <i class="{{ .icon_class }}"></i>
  </a>
{{ end }}