mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 15:26:12 +00:00
14 lines
534 B
PHP
Executable File
14 lines
534 B
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="<?= LANG?>" dir="ltr">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=<?= $g_config['charset']?>" />
|
|
<title><?= L('m_title')?></title>
|
|
<link rel="icon" href="<?= Root('favicon.ico')?>" type="image/x-icon" />
|
|
<link rel="shortcut icon" href="<?= Root('favicon.ico')?>" type="image/x-icon" />
|
|
<meta http-equiv="cleartype" content="on">
|
|
</head>
|
|
<body>
|
|
<h1><?= L('head')?></h1>
|
|
<p><?= L('message')?></p>
|
|
</body>
|
|
</html>
|