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

github.com/shenoybr/hugo-goa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <sergobot@protonmail.com>2016-11-20 19:15:12 +0300
committerSergey Popov <sergobot@protonmail.com>2016-11-20 19:15:12 +0300
commit7ef5bc524482e6cfd8903a1622512276d36a2d5c (patch)
treeaec313637e6c5409d160603a2921f716ea351308
parentc149b7ca07df946f7f1eb8edfbcf7fb52f4a4284 (diff)
Fix linkedIn in self-built hugo
-rw-r--r--README.md2
-rw-r--r--exampleSite/config.toml2
-rw-r--r--layouts/partials/social.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 5e73e7f..8284240 100644
--- a/README.md
+++ b/README.md
@@ -101,7 +101,7 @@ These settings to display your social accounts.
- `github`: Your github username.
- `instagram`: Your instagram username.
-- `linkedIn`: Your linkedIn username.
+- `linkedin`: Your linkedIn username.
- `twitter`: Your twitter username.
- `facebook`: Your facebook username.
- `google`: Your google username.
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 3492c46..918d1a9 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -36,7 +36,7 @@ keywords = "minimalist,blog,goa,hugo,developer"
[params.social]
github = "<username>"
instagram = "<username>"
-linkedIn = "<username>"
+linkedin = "<username>"
twitter = "<username>"
facebook = "<username>"
google = "<username>"
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index 154bc59..7199134 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -14,7 +14,7 @@
{{ with .Site.Params.social.instagram }}
<a href="https://instagram.com/{{.}}"><i class="fa fa-instagram" aria-hidden="true"></i></a>
{{ end }}
- {{ with .Site.Params.social.linkedIn }}
+ {{ with .Site.Params.social.linkedin }}
<a href="https://linkedin.com/in/{{.}}"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
{{ end }}
{{ with .Site.Params.social.stackoverflow }}