blob: b87b8cb95b7c02d23cd9acb00220a67ba55c14d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<div style="text-align: center;">
<h1 class="name">{{ .Site.Params.Name }}</h1>
<div style="font-size: small;">
{{ with .Site.Params.Phone }}
<a href="tel:{{ . }}">{{ . }}</a><span> |</span>
{{ end }}
{{ with .Site.Params.Email }}
<a href="mailto:{{ . }}">{{ . }}</a><span> |</span>
{{ end }}
{{ with .Site.Params.LinkedIn }}
<a href="https://{{ . }}">{{ . }}</a><span> |</span>
{{ end }}
{{ with .Site.Params.GitHub }}
<a href="https://{{ . }}">{{ . }}</a>
{{ end }}
</div>
</div>
|