UPDATED: new try
diff --git a/index.php b/index.php
index 8a6c3e4..021d9ee 100755
--- a/index.php
+++ b/index.php
@@ -32,4 +32,4 @@
 	$App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $pageTitle, $html);
 
 ?>
-Next step
\ No newline at end of file
+Next step again
\ No newline at end of file
diff --git a/pages/template.html b/pages/template.html
index 2c1d100..f0a6241 100644
--- a/pages/template.html
+++ b/pages/template.html
@@ -15,15 +15,15 @@
 <div id="midcolumn">
 <?php
 	if ($_GET['section'] == "support") {
-		$html = get_include_contents('./support.html');
+		$html = get_include_contents('support.html');
 	if ($html == false) {
-		$html = "Error! Couldn't load file ./support.html";
+		$html = "Error! Couldn't load file support.html";
 	}
 	} else {
-		$html = get_include_contents('./_index.html');
+		$html = get_include_contents('_index.html');
 	}
 	if ($html == false) {
-		$html = "Error! Couldn't load file ./_index.html";
+		$html = "Error! Couldn't load file _index.html";
 	}
 	echo $html;
 ?>