Вход Регистрация
Файл: site-info.php
Строк: 418
<?php
require_once "core.php";
head();

//Clean URL
function clean_url($site)
{
    
$site = strtolower($site);
    
$site = str_replace(array(
        
'http://',
        
'https://',
        
'www.'
    
), '', $site);
    return 
$site;
}

$site = clean_url($site_url);
?>
<div class="content-wrapper">

            <!--CONTENT CONTAINER-->
            <!--===================================================-->
            <div class="content-header">
                
                <div class="container-fluid">
                  <div class="row mb-2">
                    <div class="col-sm-6">
                      <h1 class="m-0"><i class="fas fa-info-circle"></i> Site Information</h1>
                    </div>
                    <div class="col-sm-6">
                      <ol class="breadcrumb float-sm-right">
                        <li class="breadcrumb-item"><a href="dashboard.php"><i class="fas fa-home"></i> Admin Panel</a></li>
                        <li class="breadcrumb-item active">Site Information</li>
                      </ol>
                    </div>
                  </div>
                </div>
            </div>

                <!--Page content-->
                <!--===================================================-->
                <div class="content">
                <div class="container-fluid">

<?php
//Host Info Check
function host_info($site)
{
    include 
'config.php';
    
    if (isset(
$_SERVER['HTTP_USER_AGENT'])) {
        
$useragent = $_SERVER['HTTP_USER_AGENT'];
    } else {
        
$useragent = 'Mozilla/5.0';
    }
    
    
    
$ip  = getHostByName(getHostName());
    
$url = 'http://extreme-ip-lookup.com/json/' . $ip;
    
$ch  = curl_init();
    
curl_setopt($ch, CURLOPT_URL, $url);
    
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    
curl_setopt($ch, CURLOPT_ENCODING, 'gzip,deflate');
    
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
    @
curl_setopt($ch, CURLOPT_REFERER, "https://google.com");
    @
$ipcontent = curl_exec($ch);
    
curl_close($ch);
    
    
$ip_data = @json_decode($ipcontent);
    if (
$ip_data && $ip_data->{'status'} == 'success') {
        
$country = $ip_data->{'country'};
        
$isp     = $ip_data->{'isp'};
    } else {
        
$country = "Unknown";
        
$isp     = "Unknown";
    }
    
    if (
$country == '') {
        
$country = "Unknown";
    }
    
    if (
$isp == '') {
        
$isp = "Unknown";
    }
    
    
$data = $ip . "::" . $country . "::" . $isp . "::";
    return 
$data;
}

//Robots.txt Check
function robocheck($site)
{
    
$robots_file = $_SERVER['DOCUMENT_ROOT'] . "/robots.txt";
    if (
file_exists($robots_file)) {
        return 
1;
    } else {
        return 
0;
    }
}

//Sitemap Check
function sitemap_check($site)
{
    
$sitemap_file = $_SERVER['DOCUMENT_ROOT'] . "/sitemap.xml";
    if (
file_exists($sitemap_file)) {
        return 
1;
    } else {
        return 
0;
    }
}

//Sitemap
$sitemap_r = sitemap_check($site);

//Robots.txt
$robo_r = robocheck($site);

function 
checkOnline($site)
{
    
$curlInit = curl_init($site);
    
curl_setopt($curlInit, CURLOPT_CONNECTTIMEOUT, 20);
    
curl_setopt($curlInit, CURLOPT_HEADER, true);
    
curl_setopt($curlInit, CURLOPT_NOBODY, true);
    
curl_setopt($curlInit, CURLOPT_RETURNTRANSFER, true);
    
    
$response         = curl_exec($curlInit);
    
$GLOBALS['rtime'] = curl_getinfo($curlInit);
    
curl_close($curlInit);
    if (
$response)
        return 
true;
    return 
false;
}

//Title, Description, Keywords
if (checkOnline($site)) {
    
$vtime = $rtime['total_time'];
    
$ch    = curl_init();
    
curl_setopt($ch, CURLOPT_URL, $site_url);
    
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    
curl_setopt($ch, CURLOPT_ENCODING, 'gzip,deflate');
    
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60');
    
curl_setopt($ch, CURLOPT_REFERER, "https://google.com");
    
$html = curl_exec($ch);
    
curl_close($ch);
    
$html = str_ireplace(array(
        
"Title",
        
"TITLE"
    
), "title", $html);
    
$html = str_ireplace(array(
        
"Description",
        
"DESCRIPTION"
    
), "description", $html);
    
$html = str_ireplace(array(
        
"Keywords",
        
"KEYWORDS"
    
), "keywords", $html);
    
$html = str_ireplace(array(
        
"Author",
        
"AUTHOR"
    
), "author", $html);
    
$html = str_ireplace(array(
        
"Content",
        
"CONTENT"
    
), "content", $html);
    
$html = str_ireplace(array(
        
"Meta",
        
"META"
    
), "meta", $html);
    
$html = str_ireplace(array(
        
"Name",
        
"NAME"
    
), "name", $html);
    
    
$doc = new DOMDocument();
    @
$doc->loadHTML($html);
    
$nodes = $doc->getElementsByTagName('title');
    
    @
$title = $nodes->item(0)->nodeValue;
    
    
$metas = $doc->getElementsByTagName('meta');
    
    for (
$i = 0; $i < $metas->length; $i++) {
        
$meta = $metas->item($i);
        if (
$meta->getAttribute('name') == 'description')
            
$description = $meta->getAttribute('content');
        if (
$meta->getAttribute('name') == 'keywords')
            
$keywords = $meta->getAttribute('content');
        if (
$meta->getAttribute('name') == 'author')
            
$author = $meta->getAttribute('content');
    }
    if (
$title == '')
        
$title = '<h5><span class="badge badge-secondary">No Title</span></h5>';
    if (@
$description == '')
        
$description = '<h5><span class="badge badge-secondary">No Description</span></h5>';
    if (@
$keywords == '')
        
$keywords = '<h5><span class="badge badge-secondary">No Keywords</span></h5>';
    if (@
$author == '')
        
$author = '<h5><span class="badge badge-secondary">No Author</span></h5>';
}

//Host Info
$data         = host_info($site);
$data         = explode("::", $data);
$host_ip      = $data[0];
$serverip     = getHostByName(getHostName());
$host_country = $data[1];
$host_isp     = $data[2];

$inipath = php_ini_loaded_file();

if (
$inipath) {
    
$iniflp = $inipath;
} else {
    
$iniflp = 'A php.ini file is not loaded';
}

$zend_version = zend_version();

$errorlog_path = ini_get('error_log');
?>
                    
                <div class="row">
                <div class="col-md-6">
                      <div class="card card-primary card-outline">
                            <div class="card-header">
                                <h3 class="card-title"><?php
echo $site;
?></h3>
                            </div>
                            <div class="card-body">
                            <div class="table-responsive">
                                    <table class="table table-bordered">
                                                <thead class="<?php echo $thead; ?>">
                                                    <tr>
                                                        <th>Site Stats & Information</th>
                                                        <th></th>
                                                    </tr>
                                                </thead>
                                                <tbody>
                                                    <tr>
                                                        <td>Response Time</td>
                                                        <td><h5><span class="badge badge-success"><?php
echo @$vtime;
?> sec</span></h5></td>
                                                    </tr>
                                                    <tr>
                                                        <td>PHP Configuration File (php.ini)</td>
                                                        <td><h5><span class="badge badge-warning"><?php
echo $iniflp;
?></span></h5></td>
                                                    </tr>
                                                    <tr>
                                                        <td>PHP Error Log</td>
                                                        <td><h5><span class="badge badge-warning"><?php
echo $errorlog_path;
?></span></h5></td>
                                                    </tr>
                                                    <tr>
                                                        <td>Zend Version</td>
                                                        <td><h5><span class="badge badge-danger"><?php
echo $zend_version;
?></span></h5></td>
                                                    </tr>
                                                    <tr>
                                                        <td>Default Timezone</td>
                                                        <td><h5><span class="badge badge-primary"><?php
echo date_default_timezone_get();
?></span></h5></td>
                                                    </tr>
                                                </tbody>
                                        
                                                <thead class="<?php echo $thead; ?>">
                                                    <tr>
                                                        <th>Meta Tags</th>
                                                        <th>Status</th>
                                                    </tr>
                                                </thead>
                                                <tbody>
                                                    <tr>
                                                        <td>Title</td>
                                                        <td><?php
echo @$title;
?></td>
                                                    </tr>
                                                    <tr>
                                                        <td>Description</td>
                                                        <td><?php
echo @$description;
?></td>
                                                    </tr>
                                                    <tr>
                                                        <td>Keywords</td>
                                                        <td><?php
echo @$keywords;
?></td>
                                                    </tr>
                                                    <tr>
                                                        <td>Author</td>
                                                        <td><?php
echo @$author;
?></td>
                                                    </tr>
                                                </tbody>
                                        
                                                <thead class="<?php echo $thead; ?>">
                                                    <tr>
                                                        <th>Crawling files</th>
                                                        <th>Status</th>
                                                    </tr>
                                                </thead>
                                                <tbody>
                                                    <tr>
                                                        <td>Robots (<strong>robots.txt</strong>)</td>
                                                        <td>
<?php
if ($robo_r == "0") {
    echo 
'<h5><span class="badge badge-danger">No</span></h5>';
} else {
    echo 
'<h5><span class="badge badge-success">Yes</span></h5>';
}
?>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>XML Sitemap (<strong>sitemap.xml</strong>)</td>
                                                        <td>
<?php
if ($sitemap_r == "0") {
    echo 
'<h5><span class="badge badge-danger">No</span></h5>';
} else {
    echo 
'<h5><span class="badge badge-success">Yes</span></h5>';
}
?>
                                                        </td>
                                                    </tr>
                                                </tbody>
                                     </table>
                            </div>
                            </div>
                      </div>
                    
<?php
$files   
= 0;
$folders = 0;
$images  = 0;
$php     = 0;
$html    = 0;
$css     = 0;
$js      = 0;
$dir     = glob("../");
foreach (
$dir as $obj) {
    if (
is_dir($obj)) {
        
$folders++;
        
$scan = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($obj, FilesystemIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST);
        foreach (
$scan as $file) {
            if (
is_file($file)) {
                
$files++;
                
$exp = explode(".", $file);
                if (@
array_search("png", $exp) || @array_search("jpg", $exp) || @array_search("svg", $exp) || @array_search("jpeg", $exp) || @array_search("gif", $exp)) {
                    
$images++;
                } else if (
array_search("php", $exp)) {
                    
$php++;
                } else if (
array_search("html", $exp) || array_search("htm", $exp)) {
                    
$html++;
                } else if (
array_search("css", $exp)) {
                    
$css++;
                } else if (
array_search("js", $exp)) {
                    
$js++;
                }
            } else {
                
$folders++;
            }
        }
    } else {
        
$files++;
    }
}
?>
                      <div class="row">
                          <div class="col-md-6">
                           <div class="small-box bg-primary">
                              <div class="inner">
                                <h3><?php
echo $files;
?></h3>
                                <p>Files</p>
                              </div>
                              <div class="icon">
                                <i class="fas fa-file"></i>
                              </div>
                            </div>
                          </div>
                          <div class="col-md-6">
                            <div class="small-box bg-info">
                               <div class="inner">
                                 <h3><?php
echo $folders;
?></h3>
                                 <p>Folders</p>
                               </div>
                               <div class="icon">
                                 <i class="fas fa-folder"></i>
                               </div>
                             </div>
                          </div>
                          <div class="col-md-6">
                            <div class="small-box bg-success">
                              <div class="inner">
                                <h3><?php
echo $images;
?></h3>
                                <p>Images</p>
                              </div>
                              <div class="icon">
                                <i class="fas fa-file-image"></i>
                              </div>
                            </div>
                        </div>
                        <div class="col-md-6">
                            <div class="small-box bg-danger">
                              <div class="inner">
                                <h3><?php
echo $php;
?></h3>
                                <p>PHP Files</p>
                              </div>
                              <div class="icon">
                                <i class="fab fa-php"></i>
                              </div>
                            </div>
                        </div>
                        <div class="col-md-6">
                            <div class="small-box bg-info">
                              <div class="inner">
                                <h3><?php
echo $html;
?></h3>
                                <p>HTML Files</p>
                              </div>
                              <div class="icon">
                                <i class="fas  fa-file-code"></i>
                              </div>
                            </div>
                        </div>
                        <div class="col-md-6">
                            <div class="small-box bg-success">
                              <div class="inner">
                                <h3><?php
echo $css;
?></h3>
                                <p>CSS Files</p>
                              </div>
                              <div class="icon">
                                <i class="fab fa-css3-alt"></i>
                              </div>
                            </div>
                        </div>
                        <div class="col-md-6">
                            <div class="small-box bg-warning">
                              <div class="inner">
                                <h3><?php
echo $js;
?></h3>
                                <p>JSS Files</p>
                              </div>
                              <div class="icon">
                                <i class="fab fa-js"></i>
                              </div>
                            </div>
                        </div>
                    </div>
                </div>
                    
                <div class="col-md-6">
<?php
if (!function_exists("view_size")) {
    function 
view_size($size)
    {
        if (!
is_numeric($size)) {
            return 
FALSE;
        } else {
            if (
$size >= 1073741824) {
                
$size = round($size / 1073741824 * 100) / 100 . " GB";
            } elseif (
$size >= 1048576) {
                
$size = round($size / 1048576 * 100) / 100 . " MB";
            } elseif (
$size >= 1024) {
                
$size = round($size / 1024 * 100) / 100 . " KB";
            } else {
                
$size = $size . " B";
            }
            return 
$size;
        }
    }
}

if (
is_callable("disk_free_space") && is_callable("disk_total_space")) {
    
$directory = '/';
    @
$free = disk_free_space($directory);
    @
$total = disk_total_space($directory);
    if (
$free === FALSE) {
        
$free = 0;
    }
    if (
$total === FALSE) {
        
$total = 0;
    }
    if (
$free < 0) {
        
$free = 0;
    }
    if (
$total < 0) {
        
$total = 0;
    }
    @
$used = $total - $free;
    @
$free_percent = round(100 / ($total / $free), 2);
    @
$used_percent = round(100 / ($total / $used), 2);
?>
               <div class="row">
                      <div class="col-md-6">
                            <div class="info-box bg-info">
                               <span class="info-box-icon"><i class="fas fa-hdd"></i></span>

                               <div class="info-box-content">
                                 <span class="info-box-text">HDD Total Space</span>
                                 <span class="info-box-number"><?php
    
echo view_size($total);
?></span>

                                 <div class="progress">
                                   <div class="progress-bar progress-bar-striped progress-bar-animated" style="width: <?php
    
echo $used_percent;
?>%"></div>
                                 </div>
                                     <span class="progress-description">
                                         Used Space: <span class="text-semibold"><?php
    
echo view_size($used);
?></span>
                                     </span>
                               </div>
                            </div>
                        </div>
                      <div class="col-md-6">
                            <div class="info-box bg-info">
                               <span class="info-box-icon"><i class="fas fa-hdd"></i></span>

                               <div class="info-box-content">
                                 <span class="info-box-text">HDD FREE SPACE</span>
                                 <span class="info-box-number"><?php
    
echo view_size($free);
?></span>

                                 <div class="progress">
                                   <div class="progress-bar progress-bar-striped progress-bar-animated" style="width: <?php
    
echo $free_percent;
?>%"></div>
                                 </div>
                                     <span class="progress-description">Free <span class="text-semibold"><?php
    
echo $free_percent;
?>%</span> of <span class="text-semibold"><?php
    
echo view_size($total);
?></span>
                                     </span>
                               </div>
                            </div>
                        </div>
                 </div>
                   
                <p><i class="fas fa-hdd"></i> Free HDD Space</p>
                <div class="progress progress-xl light">
                    <div class="progress-bar bg-success progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="<?php
    
echo $free_percent;
?>" aria-valuemin="0" aria-valuemax="100" style="width: <?php
    
echo $free_percent;
?>%;">
                        <strong><?php
    
echo $free_percent;
?>%</strong>
                    </div>
                </div>
                    
                <p><i class="fas fa-hdd"></i> Used HDD Space</p>
                <div class="progress progress-xl light">
                    <div class="progress-bar bg-danger progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="<?php
    
echo $used_percent;
?>" aria-valuemin="0" aria-valuemax="100" style="width: <?php
    
echo $used_percent;
?>%;">
                        <strong><?php
    
echo $used_percent;
?>%</strong>
                    </div>
                </div>
<?php
}

$extensions = get_loaded_extensions();
$countext   = count($extensions);
?>
                <br /><div class="card">
                    <div class="card-header">
                         <h3 class="card-title">Loaded PHP Extensions - <span class="badge badge-primary"><?php
echo $countext;
?></span></h3>
                    </div>
                    <div class="card-body">
<pre class="bg-light"><ul>
<?php
foreach ($extensions as $extension) {
    echo 
"<li>" . $extension . "</li>";
}
?>
</ul></pre>
                    </div>
                </div>
                    
                </div>
               
                <div class="col-md-12">
                    <h3 class="mt-none">Host Information</h3>
                    <p>Information about the Web Host, IP Address, Name Servers & more.</p><br />
                    
                    <div class="row">
                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">Domain IP</p>
                                    <i class="fas fa-user fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin"><?php
echo $serverip;
?></p>
                                </div>
                            </div>
                       </div>
                    
                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">Country</p>
                                    <i class="fas fa-globe fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin"><?php
echo $host_country;
?></p>
                                </div>
                            </div>
                       </div>

                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">Server Software</p>
                                    <i class="fas fa-database fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin">
<?php
@$version = explode("/", $_SERVER['SERVER_SOFTWARE']);
@
$softNum = explode(" ", $version[1]);
@
$soft = $version[0] . '/' . $softNum[0];
echo 
$soft;
?>
                                    </p>
                                </div>
                            </div>
                       </div>
                    
                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">ISP</p>
                                    <i class="fas fa-tasks fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin"><?php
echo $host_isp;
?></p>
                                </div>
                            </div>
                       </div>
                    </div>
                    
                    <div class="row">
                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">Server OS</p>
                                    <i class="fas fa-desktop fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin">
<?php
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
    echo 
'Windows';
} elseif (
PHP_OS === 'Linux') {
    echo 
'Linux';
} elseif (
PHP_OS === 'FreeBSD') {
    echo 
'FreeBSD';
} elseif (
PHP_OS === 'OpenBSD') {
    echo 
'OpenBSD';
} elseif (
PHP_OS === 'NetBSD') {
    echo 
'NetBSD';
} elseif (
PHP_OS === 'SunOS') {
    echo 
'SunOS';
} elseif (
PHP_OS === 'Unix') {
    echo 
'Unix';
} elseif (
PHP_OS === 'Darwin') {
    echo 
'Darwin';
} elseif (
PHP_OS === 'HP-UX') {
    echo 
'HP-UX';
} elseif (
PHP_OS === 'IRIX64') {
    echo 
'IRIX64';
} elseif (
PHP_OS === 'CYGWIN_NT-5.1') {
    echo 
'CYGWIN';
} elseif (
PHP_OS === 'GNU') {
    echo 
'GNU';
} elseif (
PHP_OS === 'DragonFly') {
    echo 
'DragonFly';
} elseif (
PHP_OS === 'MSYS_NT-6.1') {
    echo 
'MSYS';
} else {
    echo 
'Unknown';
}
?>                                    
                                    </p>
                                </div>
                            </div>
                       </div>
                       
                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">PHP Version</p>
                                    <i class="fas fa-file-code fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin"><?php
echo phpversion();
?></p>
                                </div>
                            </div>
                       </div>
                    
                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">MySQL Version</p>
                                    <i class="fas fa-list-alt fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin"><?php
echo mysqli_get_server_info($mysqli);
?></p>
                                </div>
                            </div>
                       </div>
                    
                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">Server Port</p>
                                    <i class="fas fa-plug fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin"><?php
echo $_SERVER['SERVER_PORT'];
?></p>
                                </div>
                            </div>
                       </div>
                    </div>
                    
                    <div class="row">
                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">OpenSSL Version</p>
                                    <i class="fas fa-lock fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin">
<?php
if (!extension_loaded('openssl')) {
    echo 
'<font style="color: red;">Deactivated</font>';
} else {
    echo 
str_replace("OpenSSL", "", OPENSSL_VERSION_TEXT);
}
?></p>
                                </div>
                            </div>
                       </div>
                    
                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">cURL Extension</p>
                                    <i class="fas fa-link fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin">
<?php
if (function_exists('curl_version')) {
    
$values = curl_version();
    echo 
$values["version"];
} else {
    echo 
'<font style="color: red;">Disabled</font>';
}
?></p>
                                </div>
                            </div>
                       </div>
                      
                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">HTTP Protocol</p>
                                    <i class="fas fa-hdd fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin"><?php
echo $_SERVER['SERVER_PROTOCOL'];
?></p>
                                </div>
                            </div>
                       </div>
                     
                       <div class="col-md-3">
                            <div class="card">
                                <div class="card-body text-center">
                                    <p class="text-uppercase mar-btm text-sm" style="font-size: 20px">Gateway Interface</p>
                                    <i class="fas fa-sitemap fa-3x"></i>
                                    <hr />
                                    <p class="h4 text-thin"><?php
echo @$_SERVER['GATEWAY_INTERFACE'];
?></p>
                                </div>
                            </div>
                       </div>
                    </div>
                    
                </div>
                </div>
                </div>
                <!--===================================================-->
                <!--End page content-->

            </div>
            <!--===================================================-->
            <!--END CONTENT CONTAINER-->
</div>
<?php
footer
();
?>
Онлайн: 1
Реклама