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

github.com/parsiya/Hugo-Octopress.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParsia Hakimian <parsiya@users.noreply.github.com>2016-11-13 19:59:21 +0300
committerGitHub <noreply@github.com>2016-11-13 19:59:21 +0300
commitde3a76b8a0034e9978c418ba93a1670faacea1f7 (patch)
tree77a5803389f79d0d31a41210211904bfe5650fed
parentbb751da301b03fd3d3c7a4d8d47ce7a647d531df (diff)
parent76de4ff4f29d8541d80595d0e76894be8726f42c (diff)
Merge pull request #26 from dinofizz/add-instagram-icon
Add Instagram icon to social media list in sidebar
-rw-r--r--layouts/partials/sidebar.html1
-rw-r--r--sample-config.toml1
2 files changed, 2 insertions, 0 deletions
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
index 176edb3..4544c89 100644
--- a/layouts/partials/sidebar.html
+++ b/layouts/partials/sidebar.html
@@ -33,6 +33,7 @@
{{ with .Site.Params.googleplus }}<a target="_blank" href="{{ . }}" title="{{ . }}"><i class="fa fa-google-plus fa-3x"></i></a>{{ end }}
{{ with .Site.Params.facebook }}<a target="_blank" href="{{ . }}" title="{{ . }}"><i class="fa fa-facebook fa-3x"></i></a>{{ end }}
{{ with .Site.Params.youtube }}<a target="_blank" href="{{ . }}" title="{{ . }}"><i class="fa fa-youtube fa-3x"></i></a>{{ end }}
+ {{ with .Site.Params.instagram }}<a target="_blank" href="{{ . }}" title="{{ . }}"><i class="fa fa-instagram fa-3x"></i></a>{{ end }}
<!-- don't need RSS here anymore -->
<!-- {{ if .Site.Params.rss }}<a href="{{ "/index.xml" | absURL }}" type="application/rss+xml" title="RSS"><i class="fa fa-rss-square fa-3x"></i></a>{{ end }} -->
diff --git a/sample-config.toml b/sample-config.toml
index 3a0bdfc..a46d665 100644
--- a/sample-config.toml
+++ b/sample-config.toml
@@ -97,6 +97,7 @@ post = "/blog/:year-:month-:day-:title/" # change the post URL to look like the
googleplus = ""
youtube = ""
facebook = ""
+ instagram = ""
# --- End sidebar options ---