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

github.com/SteveLane/hugo-icon.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Willitts <martin@martinwillitts.com>2017-11-09 19:47:39 +0300
committerMartin Willitts <martin@martinwillitts.com>2017-11-09 19:47:39 +0300
commit6cf24454f93f472497426c5d10bd7871566858bc (patch)
tree472203cdb6da99b3c801da651fe9e1e4d6e36948
parente0af929e999403d409e5229cf9c7dfb322618f7e (diff)
Added linkedin option to team item card
-rw-r--r--exampleSite/config.toml1
-rwxr-xr-xlayouts/partials/team.html3
2 files changed, 4 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 25ce669..2c02e95 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -159,6 +159,7 @@ title = "My Awesome Title"
dribbble = "#"
instagram = "#"
github = "#"
+ linkedin = "#"
[[params.team.item]]
name = "Alice Doe"
diff --git a/layouts/partials/team.html b/layouts/partials/team.html
index c403364..db2db51 100755
--- a/layouts/partials/team.html
+++ b/layouts/partials/team.html
@@ -28,6 +28,9 @@
{{ if isset . "github" }}
<li><a href="{{ .github }}"><i class="icon-github"></i></a></li>
{{ end }}
+ {{ if isset . "linkedin" }}
+ <li><a href="{{ .linkedin }}"><i class="icon-linkedin"></i></a></li>
+ {{ end }}
</ul>
</div>
</div>