Merge pull request #83 from lrdodge/feature/youtube-footer-link
Add YouTube link to Footer
This commit is contained in:
commit
fbdf63bfc8
@ -48,6 +48,7 @@ author:
|
|||||||
xing: yourname # eg. daattali
|
xing: yourname # eg. daattali
|
||||||
stackoverflow: yourlink # eg. "3943160/daattali"
|
stackoverflow: yourlink # eg. "3943160/daattali"
|
||||||
instagram: yourname # eg. daattali
|
instagram: yourname # eg. daattali
|
||||||
|
youtube: yourlink # eg. user/daattali or channel/daatali
|
||||||
|
|
||||||
# Select which links to show in the footer
|
# Select which links to show in the footer
|
||||||
footer-links-active:
|
footer-links-active:
|
||||||
@ -60,6 +61,7 @@ footer-links-active:
|
|||||||
xing: false
|
xing: false
|
||||||
stackoverflow: false
|
stackoverflow: false
|
||||||
instagram: false
|
instagram: false
|
||||||
|
youtube: false
|
||||||
|
|
||||||
# Select which share links to show in posts
|
# Select which share links to show in posts
|
||||||
share-links-active:
|
share-links-active:
|
||||||
|
@ -82,6 +82,16 @@
|
|||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
{% if site.author.youtube and site.footer-links-active.youtube %}
|
||||||
|
<li>
|
||||||
|
<a href="https://www.youtube.com/{{ site.author.youtube }}" title="YouTube">
|
||||||
|
<span class="fa-stack fa-lg">
|
||||||
|
<i class="fa fa-circle fa-stack-2x"></i>
|
||||||
|
<i class="fa fa-youtube fa-stack-1x fa-inverse"></i>
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if site.footer-links-active.rss %}
|
{% if site.footer-links-active.rss %}
|
||||||
<li>
|
<li>
|
||||||
|
Loading…
Reference in New Issue
Block a user