mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-14 00:26:07 +00:00
feat: front-end page names
This commit is contained in:
@@ -25,7 +25,31 @@ $automation->isWinner();
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title><?php echo SERVER_NAME ?></title>
|
||||
<title><?php
|
||||
echo SERVER_NAME . ' » » » PLUS ';
|
||||
|
||||
if (!empty($_GET['id'])) {
|
||||
switch ($_GET['id']) {
|
||||
case '2':
|
||||
echo 'Advantages';
|
||||
break;
|
||||
|
||||
case '3':
|
||||
echo 'Gold';
|
||||
break;
|
||||
|
||||
case '4':
|
||||
echo 'FAQ';
|
||||
break;
|
||||
|
||||
case '5':
|
||||
echo 'Earn Gold';
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
echo 'Tariffs';
|
||||
}
|
||||
?></title>
|
||||
<link rel="shortcut icon" href="favicon.ico"/>
|
||||
<meta http-equiv="cache-control" content="max-age=0" />
|
||||
<meta http-equiv="pragma" content="no-cache" />
|
||||
|
||||
Reference in New Issue
Block a user