1
0
hugos-resume/layouts/partials/sections/contacts.html

17 lines
575 B
HTML
Raw Normal View History

2023-12-02 23:21:28 +03:00
<div class="align-center">
2023-11-23 22:27:56 +03:00
<h1 class="name">{{ .Site.Params.Name }}</h1>
2023-12-02 23:21:28 +03:00
<div class="font-small">
2023-11-23 22:27:56 +03:00
{{ 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>