1
0
hugos-resume/layouts/partials/body/contacts.html
2023-11-23 22:27:56 +03:00

17 lines
589 B
HTML

<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>