1
0
This repository has been archived on 2025-01-10. You can view files and clone it, but cannot push or open issues or pull requests.
2023-12-02 23:21:28 +03:00

17 lines
575 B
HTML

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