mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<section class="person-bio" id="<?php echo str_replace(' ', '-', strtolower($name)) ?>">
|
|
<div class="inner-wrap inner-wrap--team">
|
|
<figure class="author">
|
|
<img src="<?php echo $imgSrc ?>" alt="Photo of <?php echo $name ?>"/>
|
|
|
|
<figcaption>
|
|
<?php echo $name ?>
|
|
|
|
<?php if (isset($email)): ?>
|
|
·
|
|
<a href="mailto:<?php echo $email ?>" class="link-primary">
|
|
<span class="icon icon-envelope"></span>
|
|
</a>
|
|
<?php endif ?>
|
|
|
|
<?php if (isset($github)): ?>
|
|
·
|
|
<a href="https://github.com/<?php echo $github ?>" class="link-primary">
|
|
<span class="icon icon-github"></span>
|
|
</a>
|
|
<?php endif ?>
|
|
|
|
<?php if (isset($twitter)): ?>
|
|
·
|
|
<a href="https://www.twitter.com/<?php echo $twitter?>" class="link-primary">
|
|
<span class="icon icon-twitter"></span>
|
|
</a>
|
|
<?php endif ?>
|
|
|
|
<br/>
|
|
<?php echo $role ?>
|
|
</figcaption>
|
|
</figure>
|
|
|
|
<div class="bio">
|
|
<?php if ($showName ?? false) :?>
|
|
<h3><?php echo $name ?></h3>
|
|
<?php endif ?>
|
|
|
|
<?php echo $bioHtml ?>
|
|
</div>
|
|
</div>
|
|
</section>
|