social_links.html 711 B

12345678910111213141516171819202122
  1. <ul class="network-icon" aria-hidden="true">
  2. {{ range .Params.social }}
  3. {{ $pack := or .icon_pack "fas" }}
  4. {{ $pack_prefix := $pack }}
  5. {{ if in (slice "fab" "fas" "far" "fal") $pack }}
  6. {{ $pack_prefix = "fa" }}
  7. {{ end }}
  8. {{ $link := .link }}
  9. {{ $scheme := (urls.Parse $link).Scheme }}
  10. {{ $target := "" }}
  11. {{ if not $scheme }}
  12. {{ $link = .link | relLangURL }}
  13. {{ else if in (slice "http" "https") $scheme }}
  14. {{ $target = "target=\"_blank\" rel=\"noopener\"" }}
  15. {{ end }}
  16. <li>
  17. <a href="{{ $link | safeURL }}" {{ $target | safeHTMLAttr }}>
  18. <i class="{{ $pack }} {{ $pack_prefix }}-{{ .icon }}"></i>
  19. </a>
  20. </li>
  21. {{end}}
  22. </ul>