blob: 834a8441019cce5a6516e6aac6feea84b1ac09b0 (
plain)
1
2
3
4
5
6
7
8
|
<?php
header("Pragma: no-cache");
header("Cache-Control: no-cache");
$__mobile = include __DIR__ . "/includes/mobile-detect.php";
include __DIR__ . "/includes/" . ($__mobile ? "mobile" : "desktop") . "/site.php";
|