aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/sections/contacts.html
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2023-12-02 23:16:25 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2023-12-02 23:16:25 +0300
commit0e0251936b3c267a6e760562e704c34d0e8666ad (patch)
treef4e83eb70d38664dfb0b27e699f0a626c797a745 /layouts/partials/sections/contacts.html
parent91709c3567372bdf698f8fcb0b76915834bbffc1 (diff)
Organize sections
Diffstat (limited to 'layouts/partials/sections/contacts.html')
-rw-r--r--layouts/partials/sections/contacts.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/layouts/partials/sections/contacts.html b/layouts/partials/sections/contacts.html
new file mode 100644
index 0000000..b87b8cb
--- /dev/null
+++ b/layouts/partials/sections/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