Skip to content

Commit 7474ee4

Browse files
authored
Merge pull request #169 from Brainhack-Donostia/BHDDaniel
social media links
2 parents 29cd0b3 + dbebb0f commit 7474ee4

File tree

4 files changed

+45
-17
lines changed

4 files changed

+45
-17
lines changed

_config.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,14 @@ people:
103103
url: https://www.bcbl.eu/en/seyma-takir
104104

105105
social:
106-
- title: twitter
107-
url: http://twitter.com/BHDonostia
108106
- title: github
109107
url: http://github.com/Brainhack-Donostia
108+
- title: bluesky
109+
url: https://bsky.app/profile/bhdonostia.bsky.social
110+
- title: linkedin
111+
url: https://es.linkedin.com/in/brainhack-donostia-8b0a12227
112+
- title: instagram
113+
url: https://www.instagram.com/bhdonostia/
110114

111115
# Postal address (add as many lines as necessary)
112116
address:

_includes/css/agency.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -926,3 +926,13 @@ img::-moz-selection {
926926
body {
927927
webkit-tap-highlight-color: #{{ site.data.template.color.primary }};
928928
}
929+
930+
931+
.social-icon {
932+
width: 1em;
933+
height: 1em;
934+
vertical-align: middle;
935+
display: inline-block;
936+
fill: currentColor; /* lets it inherit color like the other icons */
937+
}
938+

_includes/footer.html

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
1-
<footer>
2-
<div class="container">
3-
<div class="row">
4-
<div class="col-md-4">
5-
<span class="copyright">Copyright &copy; {{ site.title }} </span>
6-
</div>
7-
<div class="col-md-4">
8-
<ul class="list-inline social-buttons">
9-
{% for network in site.social %}
10-
<li><a href="{{ network.url }}"><i class="fa fa-{{ network.title }}"></i></a>
11-
</li>
12-
{% endfor %}
13-
</ul>
14-
</div>
1+
<footer>
2+
<div class="container">
3+
<div class="row">
4+
<div class="col-md-4">
5+
<span class="copyright">Copyright &copy; {{ site.title }} </span>
6+
</div>
7+
<div class="col-md-4">
8+
<ul class="list-inline social-buttons">
9+
{% for network in site.social %}
10+
<li>
11+
{% if network.title == "bluesky" %}
12+
<a href="{{ network.url }}">
13+
<img src="{{ 'img/logos/bluesky.svg' | relative_url }}" alt="Bluesky" class="social-icon">
14+
</a>
15+
{% else %}
16+
<a href="{{ network.url }}"><i class="fa fa-{{ network.title }}"></i></a>
17+
{% endif %}
18+
</li>
19+
{% endfor %}
20+
</ul>
1521
</div>
1622
</div>
17-
</footer>
23+
</div>
24+
</footer>

img/logos/bluesky.svg

Lines changed: 7 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)