47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
|
{{- $social := .Site.Params.social -}}
|
||
|
|
||
|
{{- with $social }}
|
||
|
<div class="social-icons">
|
||
|
{{- range .footer }}
|
||
|
<a href="{{ .url }}" target="_blank" rel="noopener noreferrer">
|
||
|
{{- $platform := .platform -}}
|
||
|
{{- if eq $platform "Instagram" }}
|
||
|
<!-- Instagram icon -->
|
||
|
<svg
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
viewBox="0 0 24 24"
|
||
|
width="16"
|
||
|
height="16"
|
||
|
class="social-icon"
|
||
|
fill="none"
|
||
|
stroke="currentColor"
|
||
|
stroke-linecap="round"
|
||
|
stroke-linejoin="round"
|
||
|
stroke-width="2"
|
||
|
>
|
||
|
<rect height="20" rx="5" ry="5" width="20" x="2" y="2" />
|
||
|
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z" />
|
||
|
<line x1="17.5" x2="17.51" y1="6.5" y2="6.5" />
|
||
|
</svg>
|
||
|
{{- else if eq $platform "Email" }}
|
||
|
<!-- Email icon -->
|
||
|
<svg
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
viewBox="0 0 24 24"
|
||
|
width="16"
|
||
|
height="16"
|
||
|
class="social-icon"
|
||
|
fill="none"
|
||
|
stroke="currentColor"
|
||
|
stroke-linecap="round"
|
||
|
stroke-linejoin="round"
|
||
|
stroke-width="2"
|
||
|
>
|
||
|
<circle cx="12" cy="12" r="4" />
|
||
|
<path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94" />
|
||
|
</svg>
|
||
|
{{- end }}
|
||
|
</a>
|
||
|
{{- end }}
|
||
|
</div>
|
||
|
{{- end }}
|