}
?>
			</div>
			<div class="field-wrapper">
                <p class="title">Comments</p>
                <?php 
$commentsIsEmpty = !customPrintViewsBlock("user_s_comments-block");
if ($commentsIsEmpty) {
    print "<p class='no-results'>{$username} has not made any comments</p>";
}
?>
			</div>
			<div class="field-wrapper">
                <p class="title">Annotations</p>
                <?php 
$annotationsIsEmpty = !customPrintViewsBlock("annotations_by_user-block");
if ($annotationsIsEmpty) {
    print "<p class='no-results'>{$username} has not made any annotations</p>";
}
?>
			</div>
		</div>
		<div id="user-learning-goals-space" class="profile-section">
			<span class="caption">Learning Goals</span>
            <div class="field-wrapper">
                <?php 
if (isset($field_learning_goals)) {
    foreach ($field_learning_goals as $goal) {
        print "<p>{$goal["value"]}</p>";
    }
} else {
}
?>
			</div>
			<div class="field-wrapper">
                <p class="title">Comments</p>
                <?php 
$commentsIsEmpty = !customPrintViewsBlock("user_s_comments-block");
if ($commentsIsEmpty) {
    print "<p class='no-results'>{$username} has not made any comments</p>";
}
?>
			</div>
			<div class="field-wrapper">
                <p class="title">Annotations</p>
                <?php 
$annotationsIsEmpty = !customPrintViewsBlock("my_annotations_view-block");
if ($annotationsIsEmpty) {
    print "<p class='no-results'>{$username} has not made any annotations</p>";
}
?>
			</div>
		</div>
		<div id="user-learning-goals-space" class="profile-section">
			<span class="caption">Learning Goals</span>
            <div class="field-wrapper">
                <?php 
if (isset($field_learning_goals)) {
    foreach ($field_learning_goals as $goal) {
        print "<p>{$goal["value"]}</p>";
    }
} else {