Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/runningstream/hugograyscale.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthesimplekid <brendan@thesimplekid.com>2021-01-23 03:48:50 +0300
committerthesimplekid <brendan@thesimplekid.com>2021-01-23 03:48:50 +0300
commit14efda4aa932e0dfa2b5edf2fcb21f812ca0ae44 (patch)
tree8b2a778a304b5cc56c9da2eacedc03d8d9768626
parentda6d5e7b682547243a897d150f8d5f440a1f7af5 (diff)
add linkedin and email social handlesHEADmaster
-rw-r--r--layouts/shortcodes/email.html6
-rw-r--r--layouts/shortcodes/linkedin.html6
2 files changed, 12 insertions, 0 deletions
diff --git a/layouts/shortcodes/email.html b/layouts/shortcodes/email.html
new file mode 100644
index 0000000..13e8efc
--- /dev/null
+++ b/layouts/shortcodes/email.html
@@ -0,0 +1,6 @@
+<li class="list-inline-item">
+ <a href="mailto: {{.Get `email`}}" class="btn btn-default btn-lg">
+ <i class="fa fa-envelope-o fa-fw"></i>
+ <span class="network-name">email</span>
+ </a>
+</li> \ No newline at end of file
diff --git a/layouts/shortcodes/linkedin.html b/layouts/shortcodes/linkedin.html
new file mode 100644
index 0000000..5f2936b
--- /dev/null
+++ b/layouts/shortcodes/linkedin.html
@@ -0,0 +1,6 @@
+<li class="list-inline-item">
+ <a href="https://linkedin.com/in/{{.Get `user`}}" class="btn btn-default btn-lg">
+ <i class="fa fa-linkedin fa-fw"></i>
+ <span class="network-name">linkedin</span>
+ </a>
+</li> \ No newline at end of file