Skip to content

Commit 7e7b335

Browse files
eitanbeharEitan Behar
andauthored
add support in footer to linkedin url (#41)
* add support in footer to linkedin url * Revert "add support in footer to linkedin url" This reverts commit a3b40d0. * align footer linkedin icon in the same row Co-authored-by: Eitan Behar <[email protected]>
1 parent ae5131c commit 7e7b335

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Critical items to know are:
1414
- changed behaviour
1515

1616
## [master](https://github.com/vsoch/docsy-jekyll/tree/master)
17+
- adding support in footer to icon and link to linkedin url (0.0.21)
1718
- updating repository with copyright notice, google analytics bug fix (0.0.2)
1819
- fixing link to repository in about.md (0.0.19)
1920
- use jquery locally, in case that jquery is unreachable in some places (0.0.18)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.2
1+
0.0.21

_includes/footer.html

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,20 @@
33
<div class="row">
44
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
55

6-
{% if site.twitter %}<ul class="list-inline mb-0">
6+
<ul class="list-inline mb-0">
7+
{% if site.twitter %}
78
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="" aria-label="Twitter" data-original-title="Twitter">
89
<a class="text-white" target="_blank" href="https://twitter.com/{{ site.twitter }}">
910
<i class="fab fa-twitter"></i>
1011
</a>
11-
</li>
12-
</ul>{% endif %}
12+
</li>{% endif %}
13+
{% if site.linkedin %}
14+
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="" aria-label="LinkedIn" data-original-title="LinkedIn">
15+
<a class="text-white" target="_blank" href="https://linkedin.com/in/{{ site.linkedin }}">
16+
<i class="fab fa-linkedin"></i>
17+
</a>
18+
</li>{% endif %}
19+
</ul>
1320
</div>
1421
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
1522
<ul class="list-inline mb-0">

0 commit comments

Comments
 (0)