This repository has been archived on 2024-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
resume/layouts/partials/sections/contacts.html
2023-12-06 22:56:56 +03:00

17 lines
584 B
HTML

<div class="align-center">
<h1 class="name">{{ .Site.Params.Name }}</h1>
<div class="subtitle">
{{ with .Site.Params.Telegram }}
<a href="https://t.me/{{ . }}">@{{ . }}</a><span> |</span>
{{ end }}
{{ with .Site.Params.Email }}
<a href="mailto:{{ . }}">{{ . }}</a><span> |</span>
{{ end }}
{{ with .Site.Params.Website }}
<a href="https://{{ . }}">{{ . }}</a><span> |</span>
{{ end }}
{{ with .Site.Params.Gitea }}
<a href="https://{{ . }}">{{ . }}</a>
{{ end }}
</div>
</div>