Skip to content

Commit 5aa0863

Browse files
committed
Merge pull request y7kim#28 from femontanha/gh-pages
Missing <li> close tag on team.html
2 parents 43b6db9 + 1cd023f commit 5aa0863

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

_includes/team.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ <h4>{{ member.name }}</h4>
1616
<p class="text-muted">{{ member.position }}</p>
1717
<ul class="list-inline social-buttons">
1818
{% for network in member.social %}
19-
<li><a href="{{ network.url }}"><i class="fa fa-{{ network.title }}"></i></a>
19+
<li>
20+
<a href="{{ network.url }}">
21+
<i class="fa fa-{{ network.title }}"></i>
22+
</a>
23+
</li>
2024
{% endfor %}
2125

2226
</ul>

0 commit comments

Comments
 (0)