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

github.com/yoshiharuyamashita/blackburn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoshiharu Yamashita <yoshiharuyamashita@users.noreply.github.com>2017-05-25 16:47:42 +0300
committerGitHub <noreply@github.com>2017-05-25 16:47:42 +0300
commitd1eb99085598bada0d40a42db0535310de94aac4 (patch)
tree3b8eb4c56e901012c39901644e41a1a46393ef80
parent1bc4922b5b6c65a92c001947fb16e3591656dc2d (diff)
parented91696233fbe963faa5ad7952bae8ee1a199a01 (diff)
Merge pull request #46 from winkj/social-500px
add support for 500px social network
-rw-r--r--README.md2
-rw-r--r--layouts/partials/social.html6
2 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index bc059bb..654f60a 100644
--- a/README.md
+++ b/README.md
@@ -14,6 +14,7 @@ Blackburn is a clear and responsive theme for [Hugo](//gohugo.io).
* Tumblr
* Instagram
* Flickr
+ * 500px
* Pinterest
* YouTube
* Vimeo
@@ -133,6 +134,7 @@ paginate = 10
# SNS photo/video sharing
instagram = "*"
flickr = "*"
+ photo500px = "*"
pinterest = "*"
youtube = "*"
vimeo = "*"
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index 7a5d015..33e438d 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -59,6 +59,12 @@
</li>
{{ end }}
+ {{ with .Site.Social.photo500px }}
+ <li class="pure-menu-item">
+ <a class="pure-menu-link" href="https://500px.com/{{ . }}" target="_blank"><i class="fa fa-500px fa-fw"></i>500px</a>
+ </li>
+ {{ end }}
+
{{ with .Site.Social.pinterest }}
<li class="pure-menu-item">
<a class="pure-menu-link" href="https://pinterest.com/{{ . }}" target="_blank"><i class="fa fa-pinterest-square fa-fw"></i>Pinterest</a>