	<h1>News</h1>
	<?php foreach($articles as $article): ?>
		<h2><?php echo  $article->art_title . ' - ' . $article->art_date ; ?></h2>
		<?php echo  $article->art_text_100 ; ?><?php echo  HTML::link_to_route('article' , ' ...', array( $article->id)) ; ?>
		<br/>
		<span class="notes">last updated:<?php echo  $article->updated_at ; ?> by <?php echo  $article->updated_by ; ?></span>
		<hr/>
	<?php endforeach; ?>
