Beispiel #1
0
			
			<p><i>
				This is my page about me. Now, you may have noticed that there is no color or graphics on this page. 
				The theme is inspired by the clean theme from <a href="http://mnmlist.com/">mnmlist.com</a> written by Leo Babauta.
				The purpose is that I want people to read what I'm writing, not looking at the pretty colors or the fancy pictures.  
			</i></p>
			
			<h2>News</h2>
		
			<?php 
foreach ($newsItems as $newsItem) {
    ?>
 
			<h3><?php 
    echo $newsItem->getTitle();
    ?>
 - <?php 
    echo DateFormat::toNewsDate($newsItem->getCreatedTimestamp());
    ?>
</h3>
			<p>
				<?php 
    echo $newsItem->getContent();
    ?>
			</p>
			<?php 
}
?>
		</div>
	</body>
</html>