Fix unclosed tag in _postAuthor.php

This commit is contained in:
Maxime St-Pierre 2018-05-06 21:03:14 -04:00 committed by Jeremy Kauffman
parent e9dfa38b00
commit 7dd3b4f738

View file

@ -10,13 +10,14 @@
<?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)): ?>
<?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 ?></h3>
<?php echo $authorBioHtml ?>
</div>
</div>
</div>
</div>