mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<section class="person-bio --author">
|
|
<div class="inner-wrap">
|
|
<figure class="author">
|
|
<img src="<?php echo $photoImgSrc ?>" alt="<?php echo __('Photo of %name%', ['%name%' => $authorName]) ?>"/>
|
|
|
|
<figcaption>
|
|
<?php echo $authorName ?>
|
|
|
|
<?php if (isset($authorEmail)): ?>
|
|
·
|
|
<a href="mailto:<?php echo $authorEmail ?>" class="link-primary">
|
|
<span class="icon icon-envelope"></span>
|
|
</a>
|
|
<?php endif ?>
|
|
|
|
<?php if (isset($authorGithub)): ?>
|
|
·
|
|
<a href="https://github.com/<?php echo $authorGithub ?>" class="link-primary">
|
|
<span class="icon icon-github"></span>
|
|
</a>
|
|
<?php endif ?>
|
|
|
|
<?php if (isset($authorTwitter)): ?>
|
|
·
|
|
<a href="https://www.twitter.com/<?php echo $authorTwitter?>" class="link-primary">
|
|
<span class="icon icon-twitter"></span>
|
|
</a>
|
|
<?php endif ?>
|
|
</figcaption>
|
|
</figure>
|
|
|
|
<div class="bio">
|
|
<?php echo $authorBioHtml ?>
|
|
</div>
|
|
</div>
|
|
</section>
|