mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
added icon email and some social links (#421)
* Add email icon (instead of text) + social icons to press-kit page
This commit is contained in:
parent
c7531eda8c
commit
991303e909
1 changed files with 8 additions and 2 deletions
|
@ -42,8 +42,14 @@
|
|||
<h4>
|
||||
<?php echo $metadata['name'] ?>
|
||||
<?php if (isset($metadata['email'])): ?>
|
||||
<a href="mailto:<?php echo $metadata['email'] ?>" class="link-primary"><?php echo $metadata['email'] ?></a>
|
||||
<?php endif ?>
|
||||
<a href="mailto:<?php echo $metadata['email'] ?>" class="link-primary"><span class="icon icon-envelope"></span></a>
|
||||
<?php endif ?>
|
||||
<?php if (isset($metadata['github'])): ?>
|
||||
<a href="https://github.com/<?php echo $metadata['github'] ?>" class="link-primary"><span class="icon icon-github"></span></a>
|
||||
<?php endif ?>
|
||||
<?php if (isset($metadata['twitter'])): ?>
|
||||
<a href="https://www.twitter.com/<?php echo $metadata['twitter'] ?>" class="link-primary"><span class="icon icon-twitter"></span></a>
|
||||
<?php endif ?>
|
||||
</h4>
|
||||
<div class="meta spacer1"><?php echo $metadata['role'] ?></div>
|
||||
<div class="markdown">
|
||||
|
|
Loading…
Add table
Reference in a new issue