aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/sections/contacts.html
blob: 76472439c27a7ae9389f9ea97d54200f1816e6f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="align-center">
    <h1 class="name">{{ .Site.Params.Name }}</h1>
    <div class="font-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>