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-25 23:56:13 +0300
committerCurtis Timson <curt@live.co.uk>2018-02-25 23:56:13 +0300
commitf1e2b4aa490d52d58d5bdc9005e73f69983e4ea8 (patch)
tree9d60659c007a4f735669c6c95d4ee2393542e6ff /layouts
parentac46f2b586d4511df53822ce0839af9d31ac9eb1 (diff)
:sparkles: Add youtube social link support
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/footer/index.html3
-rw-r--r--layouts/partials/nav.html3
2 files changed, 6 insertions, 0 deletions
diff --git a/layouts/partials/footer/index.html b/layouts/partials/footer/index.html
index c1db447..85cd0e1 100644
--- a/layouts/partials/footer/index.html
+++ b/layouts/partials/footer/index.html
@@ -63,6 +63,9 @@
{{ with .github}}
<li><a href="{{ . }}" class="icon alt fa-github"><span class="label">GitHub</span></a></li>
{{ end }}
+ {{ with .youtube}}
+ <li><a href="{{ . }}" class="icon alt fa-youtube"><span class="label">Youtube</span></a></li>
+ {{ end }}
</ul>
</section>
{{ end }}
diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html
index b33d9a6..13382b4 100644
--- a/layouts/partials/nav.html
+++ b/layouts/partials/nav.html
@@ -23,6 +23,9 @@
{{ with .github}}
<li><a href="{{ . }}" class="icon fa-github"><span class="label">GitHub</span></a></li>
{{ end }}
+ {{ with .youtube}}
+ <li><a href="{{ . }}" class="icon fa-youtube"><span class="label">Youtube</span></a></li>
+ {{ end }}
</ul>
{{ end }}
</nav> \ No newline at end of file