diff --git a/skeleton/templates/index.php b/skeleton/templates/index.php
index f8d8440817f994d939a0be44327444e50d94dc4a..fb0544e76ed6aad8bde10e61a99c1c2d4f8d5648 100644
--- a/skeleton/templates/index.php
+++ b/skeleton/templates/index.php
@@ -5,8 +5,8 @@
 ?>
 <h1>Skeleton</h1>
 
-<? foreach( $_["array"] as $item ){ ?>
-	<p><? echo $item ?></p>
-<? } ?>
+<?php foreach($_["array"] as $item): ?>
+	<p><?php echo $item; ?></p>
+<?php endforeach; ?>
 
-<? echo $_["anothervar"] ?>
+<?php echo $_["anothervar"]; ?>