"; return; } include_once($_SERVER['DOCUMENT_ROOT']."/templates/mainHeadBody.php"); /** ROUTER */ if($routes[0] == "category" && $routes[1] > 0) include_once($_SERVER['DOCUMENT_ROOT']."/templates/categoryBody.php"); else if($routes[0] == "order" && $routes[1] > 0) include_once($_SERVER['DOCUMENT_ROOT']."/templates/orderCategoryBody.php"); else if($routes[0] == "orderProduct" && $routes[1] > 0) include_once($_SERVER['DOCUMENT_ROOT']."/templates/orderProductBody.php"); else if($routes[0] == "product" && $routes[1] > 0) include_once($_SERVER['DOCUMENT_ROOT']."/templates/productBody.php"); else if($routes[0] == "auth") include_once($_SERVER['DOCUMENT_ROOT']."/templates/auth.php"); else if($routes[0] == "account") include_once($_SERVER['DOCUMENT_ROOT']."/templates/account.php"); else if($routes[0] == "faq") include_once($_SERVER['DOCUMENT_ROOT']."/templates/faq.php"); else if($routes[0] == "rules") include_once($_SERVER['DOCUMENT_ROOT']."/templates/rules.php"); else if($routes[0] == "contact") include_once($_SERVER['DOCUMENT_ROOT']."/templates/header/contact.php"); else if($routes[0] == "razdacha") include_once($_SERVER['DOCUMENT_ROOT']."/templates/header/razdacha.php"); else if($routes[0] == "kakpay") include_once($_SERVER['DOCUMENT_ROOT']."/templates/header/kakpay.php"); else if($routes[0] == "garanty") include_once($_SERVER['DOCUMENT_ROOT']."/templates/header/garanty.php"); else include_once($_SERVER['DOCUMENT_ROOT']."/templates/indexBody.php"); /** ROUTER END */ include_once($_SERVER['DOCUMENT_ROOT']."/templates/mainFooterBody.php"); ?>