Skip to content

Commit f0db891

Browse files
committed
Add LinkedIn and Instagram to footer
- Add title to the social media icons in the footer - Update Font Awesome to 4.7 - Change YouTube icon to fit current branding
1 parent 50e64a5 commit f0db891

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

_config.yml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,24 @@ emails:
2929
3030

3131
social:
32-
facebook-official: //facebook.com/StudentRobotics
33-
twitter: //twitter.com/studentrobotics
34-
youtube: //youtube.com/StudentRobotics
35-
github: //github.com/srobo
32+
- title: GitHub
33+
icon: github
34+
link: https://github.com/srobo
35+
- title: Twitter
36+
icon: twitter
37+
link: https://twitter.com/studentrobotics
38+
- title: YouTube
39+
icon: youtube-play
40+
link: https://youtube.com/user/StudentRobotics
41+
- title: Instagram
42+
icon: instagram
43+
link: https://www.instagram.com/student_robotics/
44+
- title: Facebook
45+
icon: facebook-official
46+
link: https://facebook.com/StudentRobotics
47+
- title: LinkedIn
48+
icon: linkedin
49+
link: https://www.linkedin.com/company/10969472/
3650

3751
exclude:
3852
- README.md

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h4>&nbsp;</h4>
4040
<div class="column d-6-12 text-right">
4141
<ul class="social-media-links">
4242
{% for account in site.social %}
43-
<li><a href="{{ account[1] }}"><i class="fa fa-{{ account[0] }}" aria-hidden="true"></i></a></li>
43+
<li><a href="{{ account.link }}"><i class="fa fa-{{ account.icon }}" aria-hidden="true" title="{{ account.title }}"></i></a></li>
4444
{% endfor %}
4545
</ul>
4646
</div>

_includes/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
77
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
88

9-
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
9+
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
1010
<link rel="stylesheet" href="{{ '/css/main.css' | prepend: site.baseurl }}">
1111

1212
{% if page.extra_css %}

0 commit comments

Comments
 (0)