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

github.com/curttimson/hugo-theme-massively.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCurtis Timson <curt@live.co.uk>2018-02-26 00:02:45 +0300
committerCurtis Timson <curt@live.co.uk>2018-02-26 00:02:45 +0300
commit4b990406e3fa49b5f3df0f3cb805ccb7069864f0 (patch)
tree126fa32f406dc46ad20307eca8d3b922e5da9252
parent020d78076349bfd00eff63d96363ba3ad6df72cc (diff)
:sparkles: Add flickr link support
-rw-r--r--exampleSite/data/social.yaml1
-rw-r--r--layouts/partials/footer/index.html3
-rw-r--r--layouts/partials/nav.html3
3 files changed, 7 insertions, 0 deletions
diff --git a/exampleSite/data/social.yaml b/exampleSite/data/social.yaml
index 32b0e1b..7d0bd7f 100644
--- a/exampleSite/data/social.yaml
+++ b/exampleSite/data/social.yaml
@@ -6,3 +6,4 @@ github: "https://github.com/"
youtube: "https://youtube.com/"
googleplus: "https://plus.google.com/"
lastfm: "https://last.fm/"
+flickr: "https://flickr.com/" \ No newline at end of file
diff --git a/layouts/partials/footer/index.html b/layouts/partials/footer/index.html
index d120330..692162d 100644
--- a/layouts/partials/footer/index.html
+++ b/layouts/partials/footer/index.html
@@ -72,6 +72,9 @@
{{ with .lastfm}}
<li><a href="{{ . }}" class="icon alt fa-lastfm"><span class="label">Last.fm</span></a></li>
{{ end }}
+ {{ with .flickr}}
+ <li><a href="{{ . }}" class="icon alt fa-flickr"><span class="label">Flickr</span></a></li>
+ {{ end }}
</ul>
</section>
{{ end }}
diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html
index 5c8b417..8057978 100644
--- a/layouts/partials/nav.html
+++ b/layouts/partials/nav.html
@@ -32,6 +32,9 @@
{{ with .lastfm }}
<li><a href="{{ . }}" class="icon fa-lastfm"><span class="label">Last.fm</span></a></li>
{{ end }}
+ {{ with .flickr }}
+ <li><a href="{{ . }}" class="icon fa-flickr"><span class="label">Flickr</span></a></li>
+ {{ end }}
</ul>
{{ end }}
</nav> \ No newline at end of file