File "header.php"

Full path: C:/xampp/htdocs/www_real/header.php
File size: 4.8 B (4.8 KB bytes)
MIME-type: text/html
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>This Aion Brasil</title>
    <link href="img/favicon.png" rel="shortcut icon" />
    <link href="style/style.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="style/tooltip.js"></script>
    <!-- Page Navigation -->
    <link rel="stylesheet" type="text/css" href="style/page.css" />
    <script type="text/javascript" src="style/page.js"></script>
    <script type="text/javascript" src="style/page_admin.js"></script>
    <!-- BB Code -->
    <link rel="stylesheet" type="text/css" href="style/bbcodes.css" />
    <script type="text/javascript" src="style/jquery.min.js"></script>
    <script type="text/javascript" src="style/jquery.cleditor.min.js"></script>
    <!-- Knowledge Base -->
    <script type="text/javascript" src="style/aiondatabase.js"></script>
    <script type="text/javascript" src="style/aionyg.js"></script>
    <!-- Language Support -->
    <script type="text/javascript" src="language/language.js"></script>
    <!-- MENUE -->
    <link rel="stylesheet" type="text/css" href="style/menu.css" />
    <script type="text/javascript" src="style/menu.js"></script>
</head>
<body>
    <video autoplay muted loop id="bgVideo">
        <source src="../bg/Pagina principal.mp4" type="video/mp4">
    </video>

    <div class="content">
        <?php require "config.php"; ?>
        <?php require "language/language.php"; ?>
        <?php require "modules/status_m.php"; ?>
        <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">

        <!-- Navegação no Topo -->
        <div id="navigation" style="width: 100%; text-align: right; padding-right: 50px;"> <!-- Ajuste o valor de padding-right conforme necessário -->
            <a target="_blank" href="https://www.instagram.com/thisaionbrasil/">
                <button class="nav-button instagram">Instagram</button>
            </a>
            <a target="_blank" href="https://discord.gg/EdZEKAfsp5">
                <button class="nav-button discord">Discord</button>
            </a>
        </div>

        <!-- Top Status -->
        <div class="width" align="center">
            <div class="head-status border shadow">
                <?php echo "PvE: "; echo $login ? "<font color='#00CC00'><b>Online</b></font>" . "&nbsp&nbsp&nbsp" : "<font color='red'><b>Offline</b></font>" . "&nbsp&nbsp&nbsp"; ?>
                <?php echo "&nbsp&nbspPvP: "; echo $game ? "<font color='#00CC00'><b>Online</b></font>" . "&nbsp&nbsp&nbsp" : "<font color='red'><b>Offline</b></font>" . "&nbsp&nbsp&nbsp"; ?>
                <?php echo "&nbspOnline:  <b>$playersonline</b>" . "&nbsp&nbsp&nbsp"; ?>
                <?php echo "&nbsp&nbsp"; echo $address ?>
                <?php echo "&nbsp&nbsp&nbsp"; echo getLangMenu(__file__); ?>
            </div>

			    <!-- Aion Logo -->
			<div class="aionlogo">
				<img src="img/logo_blue.png" alt="Aion Logo">
			</div>

            <!-- Top Menue -->
            <div class="head-menu border-top shadow">
                <div>
                    <ul id="menu">
                        <li><a href="./"><?php echo $lang['home']; ?></a></li>
                        <li><a href="#"><?php echo $lang['statistics']; ?></a>
                            <ul>
                                <li><a href="online.php"><?php echo $lang['onlinePlayers']; ?></a></li>
                                <li><a href="top100.php"><?php echo $lang['top100']; ?></a></li>
                                <li><a href="legion.php"><?php echo $lang['topLegions']; ?></a></li>
                                <li><a href="rich.php"><?php echo $lang['topRich']; ?></a></li>
                                <li><a href="abyss.php"><?php echo $lang['topAbyss']; ?></a></li>
                            </ul>
                        </li>
                        <li><a href="search.php"><?php echo $lang['searchPlayers']; ?></a></li>
                        <li><a href="download.php"><?php echo $lang['downloads']; ?></a></li>
                        <li><a href="doacao.php"><?php echo "Doação"; ?></a></li> <!-- Ajuste aqui -->
                    </ul>
                </div>
            </div>
        </div>
    </div>
</body>
</html>