Skip to content

Commit 401acda

Browse files
Add linkedin page to homepage (#1255)
Fix #1178 Co-authored-by: Sergey Panteleev <sergey@php.net>
1 parent d60fc96 commit 401acda

File tree

13 files changed

+23
-4
lines changed

13 files changed

+23
-4
lines changed

fonts/Font-Awesome/config.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@
3333
"search": [
3434
"x-twitter"
3535
]
36+
},
37+
{
38+
"uid": "e9107949dd6c9e8ab2b29ae07156e38c",
39+
"css": "linkedin",
40+
"code": 61665,
41+
"src": "fontawesome"
3642
}
3743
]
3844
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11

22
.icon-x-twitter:before { content: '\e800'; } /* '' */
33
.icon-mastodon:before { content: '\e801'; } /* '' */
4+
.icon-linkedin:before { content: '\f0e1'; } /* '' */

fonts/Font-Awesome/css/fontello-embedded.css

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11

22
.icon-x-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
33
.icon-mastodon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
4+
.icon-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e1;&nbsp;'); }

fonts/Font-Awesome/css/fontello-ie7.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@
1212

1313
.icon-x-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
1414
.icon-mastodon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
15+
.icon-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e1;&nbsp;'); }

fonts/Font-Awesome/css/fontello.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,4 @@
5656

5757
.icon-x-twitter:before { content: '\e800'; } /* '' */
5858
.icon-mastodon:before { content: '\e801'; } /* '' */
59+
.icon-linkedin:before { content: '\f0e1'; } /* '' */

fonts/Font-Awesome/font/fontello.eot

244 Bytes
Binary file not shown.

fonts/Font-Awesome/font/fontello.svg

Lines changed: 3 additions & 1 deletion
Loading

fonts/Font-Awesome/font/fontello.ttf

244 Bytes
Binary file not shown.

fonts/Font-Awesome/font/fontello.woff

200 Bytes
Binary file not shown.
184 Bytes
Binary file not shown.

index.php

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,17 +192,23 @@
192192
<div class='body'>
193193
<ul>
194194
<li>
195-
<a href="https://twitter.com/official_php">
195+
<a href="https://twitter.com/official_php" target="_blank" rel="noopener noreferrer">
196196
<i class="icon-x-twitter"></i>
197197
@official_php
198198
</a>
199199
</li>
200200
<li>
201-
<a href="https://fosstodon.org/@php">
201+
<a href="https://fosstodon.org/@php" target="_blank" rel="noopener noreferrer">
202202
<i class="icon-mastodon"></i>
203203
@php@fosstodon.org
204204
</a>
205205
</li>
206+
<li>
207+
<a href="https://www.linkedin.com/company/phpnet" target="_blank" rel="noopener noreferrer">
208+
<i class="icon-linkedin"></i>
209+
@phpnet
210+
</a>
211+
</li>
206212
</ul>
207213
</div>
208214
</div>
Loading

0 commit comments

Comments
 (0)