Файл: _core/_inc/head.php
Строк: 64
<?php
# mark core v1.0
# author Drk in
# date 24.10.19
echo '
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8"/>
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="'.ico.'favicon.ico" />
<link rel="stylesheet" type="text/css" href="/css/roboto.css">
<link rel="stylesheet" type="text/css" href="/css/style.css">
<link rel="stylesheet" type="text/css" href="/css/grid.css">
<title>'.$title.'</title>
</head>
<body>
<div class="center margin"><a href="/"><img src="'.ico.'minilogo.png" width="94px"></a></div>
<div class="content">
'.(isset($user) ? '
<div class="header">
<span class="pull-right" style="text-align: right;">
<img src="'.ico.'hp.png" width="12px"> '.$user['hp'].'<br>
<img src="'.ico.'energy.png" width="12px"> '.$user['rad'].'</span>
<img src="'.ico.'food.png" width="16px"> '.$user['eat'].'
<img src="'.ico.'dollar.png" width="10px"> '.$user['bits'].'
<br>
<img src="'.ico.'vin.png" width="16px"> '.$user['vit'].'
<img src="'.ico.'ruble.png" width="10px"> '.$user['rub'].' </div>
'.user::rgh().'
<div style="margin: 2px 5px;">
<div class="grid fights-link">
<div class="six columns " style="width: 20%;">
<a href="/map"><img src= "'.ico.'head/home.png" style="width: 32px;"></a>
</div>
<div class="six columns" style="width: 20%;">
<a href="/id/'.$user['id'].'"><img src= "'.ico.'head/user.png" style="width: 32px;"></a>
</div>
<div class="six columns" style="width: 20%;">
<a href="/pda"><img src= "'.ico.'head/conf.png" style="width: 32px;"></a>
</div>
<div class="six columns" style="width: 20%;">
<a href="/inv"><img src= "'.ico.'head/rad.png" style="width: 32px;"></a>
</div>
<div class="six columns" style="width: 20%;">
<a href="/main"><img src= "'.ico.'head/clap.png" style="width: 32px;"></a>
</div>
</div>
</div>
'.($user['cn_mail'] > 0 && $_SERVER['PHP_SELF'] != "/_modules/mail/index.php" && $_SERVER['PHP_SELF'] != "/_modules/mail/message/index.php" ? '
<div style="margin: 5px;">
<a href="/mail" class="weapon">
<table width="100%">
<tbody><tr>
<td class="attack-icon" width="16px" valign="top"><img width="16px" src="'.ico.'plus.png"></td>
<td class="attack-text">Уведомление<br>
<small>У вас новое сообщение</small>
</td></tr></tbody></table></a></div>
':null).'
':null).'
';
# gen start
$TimeStart = microtime(true);
?>