OwlCyberSecurity - MANAGER
Edit File: exclusive-games.php
<?php include("includes/config.php"); include("includes/conexao.php"); $paginacao = new Paginacao($db); $result = $paginacao->Registros("SELECT * FROM game WHERE publicado=true AND data_publicar <= NOW() AND exclusive=1 ORDER BY updated_at DESC"); $linksPaginacao = $paginacao->links(URL_BASE . "exclusive-games/"); $pageTitle = _t("Exclusive Games") . " " . _t("Dress Up Games") ." - " . _t("Kawaii Games"); $canonical = URL_BASE . "exclusive-games"; $linksBradCrup = [ $canonical => _t("Exclusive Games"), ]; ?> <!doctype html> <html> <head itemscope itemtype="http://schema.org/WebSite"> <meta charset="utf-8"> <title itemprop='name'><?php echo $pageTitle ?></title> <meta name="description" content="<?php echo _t("Exclusive mobile friendly avatar doll creators, dress up and coloring games from your favorite characters developed by Kawaii Games") ?>"> <meta name="author" content="Heglaé Malheiros Maia"> <!--Ajudar a compartilhar no facebook--> <!--Tags para facebook--> <meta property="og:locale" content="en_us"> <meta property="og:url" content="<?= $canonical ?>"> <meta property="og:title" content="<?php echo $pageTitle ?>"> <meta property="og:site_name" content="<?php echo _t("Kawaii Games") ?>"> <meta property="og:description" content= "<?php echo _t("Exclusive mobile friendly avatar doll creators, dress up and coloring games from your favorite characters developed by Kawaii Games") ?>"> <meta property="og:image" content="//www.kawaiigames.net/kawaii_games_logo.fw.png"> <?php include ("includes/head.php"); ?> <style> @media (max-width: 767.98px) { .game-item:nth-of-type(5) .game-insignia { display: inline; } } </style> </head> <body id="comecoSite"> <!--LOGO E PROPAGANDA CABEÇALHO................................................................................................................................--> <?php include ("includes/topo.php"); ?> <!--REDES SOCIAIS................................................................................................................................--> <div class="container"> <div class="row"> <?php include ("includes/menu-esquerdo.php"); ?> <!--BOX CENTRAL................................................................................................................................--> <div class="col-md-10"> <?php echo breadcrumb_links($linksBradCrup); ?> <div class="box-central"> <h1 class="barra-rosa titulo"><?php echo _t("Exclusive Games") ?></h1> <div class="text-center" itemscope itemtype="http://schema.org/Game"> <?php foreach ($result as $item) { include("includes/game-item.php"); }//foreach ?> <!--SCROLL UP--> <a href="#comecoSite" class="scroll"> <i class="glyphicon glyphicon-circle-arrow-up"></i> </a> </div> <!-- PAGINAÇÃO --> <?php echo $linksPaginacao; ?> </div> </div> </div><!---ROW - REDES SOCIAIS--> </div><!---CONTAINER - REDES SOCIAIS--> <!--RODAPÉ................................................................................................................................--> <?php include ("includes/rodape.php"); ?> <!-- SNIGEL STICKY LEADERBOARD <h3>sticky_leaderboard<br><small>desktop: [728,90]</small></h3>--> <?php include ("includes/snigel-stickerboard.php"); ?> <!-- INFOLINK ADS--> <?php include ("includes/infolinks-ads.php"); ?> </body> </html>