aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/sections/contacts.html
blob: b9ad0c54cdce04b3c652fbe4f20c3ffe1a8ea059 (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="subtitle">
        {{ 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>