diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-11-23 22:27:56 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-11-23 22:27:56 +0300 |
commit | 5eb65528e2a25c3ce3c4f079541cc611ac2ee713 (patch) | |
tree | 8f10dc8f9dc77b4c138ebb90f13f757dba99f606 /layouts/partials/body/contacts.html | |
parent | 515be43c4cf5f4cba27de4a0be605c47b3dacea9 (diff) |
Use partials
Diffstat (limited to 'layouts/partials/body/contacts.html')
-rw-r--r-- | layouts/partials/body/contacts.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layouts/partials/body/contacts.html b/layouts/partials/body/contacts.html new file mode 100644 index 0000000..b87b8cb --- /dev/null +++ b/layouts/partials/body/contacts.html @@ -0,0 +1,17 @@ +<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>
\ No newline at end of file |