site

personal website, served at mordaunt.dev/site
Log | Files | Refs

social.html (878B)


      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           {{ if .src  -}}
      8           <img src="{{ .src }}" class="custom-icon "/>
      9           {{ else if .svg  -}}
     10           <div class="custom-icon" style="display: inline-block;">{{ readFile .svg | safeHTML }}</div>
     11           {{- else -}}
     12           <i class="{{ .icon }}" aria-hidden="true"></i>
     13           {{- end }}
     14         </a>
     15       </li>
     16     {{ else }}
     17       <li>
     18         <a href="{{ .url | safeURL }}" aria-label="{{ .name }}" {{ if .rel }}rel="{{ .rel }}"{{ end }} {{ if .target }}target="{{ .target }}"{{ end }}>{{ .name }}</a>
     19       </li>
     20     {{ end }}
     21   {{ end }}
     22 </ul>
     23 {{ end }}