FIXED: page call
diff --git a/pages/template.html b/pages/template.html
index 9d48fb1..83a3bb2 100644
--- a/pages/template.html
+++ b/pages/template.html
@@ -15,9 +15,9 @@
 <div id="midcolumn">
 <?php
 	if ($_GET['section'] == "support") {
-		$html = file_get_contents('pages/_support.html');
+		$html = file_get_contents('pages/support.html');
 	} else {
-		$html = file_get_contents('pages/template.html');
+		$html = file_get_contents('pages/_index.html');
 	}
 	echo $html;
 ?>