blob: 03645ad5f9982946fedd253b7e8445cb9fc17f3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{ $social := .social }}
{{ $username := .username }}
{{ $url := "" }}
{{ if eq $social "github" }}
{{ $url = printf "https://github.com/%s" $username }}
{{ else if eq $social "linkedin" }}
{{ $url = printf "https://www.linkedin.com/in/%s" $username }}
{{ else }}
{{ $url = "#" }}
{{ end }}
<a href="{{ $url }}" target="_blank">
{{ title $social }}
</a>
|