
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
$author = presso_get_current_author();
if ( empty( $author ) ) return;
?>
<div class="vw-about-author clearfix" <?php presso_itemprop('author'); presso_itemtype('Person'); ?>>

	<div class="vw-about-author__inner clearfix">
		<?php presso_the_avatar( $author, 150 ); ?>
		
		<div class="vw-about-author__info">
			<div class="vw-about-author__tagline"><?php esc_html_e( 'About the author', 'presso' ); ?></div>

			<h4 class="vw-about-author__name" <?php presso_itemprop('name'); ?>><?php the_author_meta( 'display_name', $author->ID ); ?></h4>

			<?php
			$bio = get_the_author_meta( 'user_description', $author->ID );

			if ( ! empty( $bio ) ) : ?>
			<p class="vw-about-author__bio" <?php presso_itemprop('description'); ?>><?php echo nl2br( $bio ); ?></p>
			<?php endif; ?>

			<?php presso_the_user_social_links( 'medium' ); ?>
		</div>
	</div>
</div>