require $baseDir . 'includes/templates/left_menu.php';
/*Display the default left menu*/
?>
			
		<!--START TIMELINE-->
		<div class="container">
			<div class="top-heading">
				Followers
			</div>	
			<div style="text-align:left;width:96%;margin:0 auto;">
				<?php 
#####################################################
/**
 * Display all of the people following the logged in user
 */
foreach ($Friends->getFollowers() as $follower) {
    ?>
				
					<div class="feed-box-title" style="margin-bottom:6px;">
						<a href="profile.php?id=<?php 
    echo $follower["follower"];
    ?>
" style="margin:0"><img src="<?php 
    echo $follower["thumbnail"];
    ?>
" /></a>
						<a href="profile.php?id=<?php 
    echo $follower["follower"];
    ?>
"><?php 
    echo $follower["first_name"] . ' ' . $follower["last_name"];