1
0

social.html 618 B

1234567891011121314151617
  1. {{ with .Site.Params.social }}
  2. <ul>
  3. {{ range sort . "weight" }}
  4. {{ if .icon }}
  5. <li>
  6. <a href="{{ .url | safeURL }}" aria-label="{{ .name }}" {{ if .rel }}rel="{{ .rel }}"{{ end }} {{ if .target }}target="{{ .target }}"{{ end }} {{ if .type }}type="{{ .type }}"{{ end }}>
  7. <i class="{{ .icon }}" aria-hidden="true"></i>
  8. </a>
  9. </li>
  10. {{ else }}
  11. <li>
  12. <a href="{{ .url | safeURL }}" aria-label="{{ .name }}" {{ if .rel }}rel="{{ .rel }}"{{ end }} {{ if .target }}target="{{ .target }}"{{ end }}>{{ .name }}</a>
  13. </li>
  14. {{ end }}
  15. {{ end }}
  16. </ul>
  17. {{ end }}