$tempText = '| <a href="/students/login">Student Login</a> | <a href="/employers/login">Employer Login</a>';
}
?>
@parent <?php 
echo $tempText;
?>
@stop
@section('sidebar')
@parent

<p>This is appended to the master sidebar.</p>
@stop

@section('content')
<?php 
$post = Internships::getSingleInternship($id);
?>

<div>
	<ul class="timeline">
		<?php 
if ($post) {
    ?>
		<li>
			<div class="bubble-container">
				<div class="bubble">
					<h3><?php 
    echo $post['title'];
    ?>
</h3> at <h3>@<?php 
    echo $post['company'];