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:
authorSteveLane <SteveLane@users.noreply.github.com>2017-11-13 23:53:10 +0300
committerGitHub <noreply@github.com>2017-11-13 23:53:10 +0300
commitcd4e21a37ef559aa6b6bfded475cf310ae4ee901 (patch)
tree258580ff2cdfd70cf757b205906712562e9cac93
parent8cad49177b9e46fdd6f20b38af9e89c0a020391b (diff)
parent6cf24454f93f472497426c5d10bd7871566858bc (diff)
Merge pull request #8 from MartinWillitts/feature/team-linkedin
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 03caf6b..b65080f 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>