Advertisement
AlexProg

template header gamezer

Feb 22nd, 2015
484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 36.76 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}" xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB} {NAMESPACE_BBCODE}>
  3. <head>
  4.    <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
  5.    <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
  6.    <meta http-equiv="content-script-type" content="text/javascript" />
  7.    <meta http-equiv="content-style-type" content="text/css" />
  8.    <!-- BEGIN switch_compat_meta -->
  9.    <meta http-equiv="X-UA-Compatible" content="IE={switch_compat_meta.VERSION}" />
  10.    <!-- END switch_compat_meta -->
  11.    <!-- BEGIN switch_canonical_url -->
  12.    <link rel="canonical" href="{switch_canonical_url.CANONICAL_URL}" />
  13.    <!-- END switch_canonical_url -->
  14.    {META_FAVICO}
  15.    {META}
  16.    {META_FB_LIKE}
  17.    <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
  18.    {T_HEAD_STYLESHEET}
  19.    {CSS}
  20.    <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
  21.    <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
  22.    <script src="{JQUERY_PATH}" type="text/javascript"></script>
  23.    <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>
  24.  
  25.    <!-- BEGIN switch_fb_login -->
  26.    <script src="http://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
  27.    <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
  28.    <!-- END switch_fb_login -->
  29.  
  30.    <!-- BEGIN switch_ticker -->
  31.    <link type="text/css" rel="stylesheet" href="{JS_DIR}jquery/ticker/ticker.css" />  
  32.    <script src="{JS_DIR}jquery/ticker/ticker.js" type="text/javascript"></script>
  33.    <!-- END switch_ticker -->
  34.  
  35.    <!-- BEGIN switch_ticker_new -->
  36.    <script src="{JS_DIR}jquery/jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
  37.    <script type="text/javascript">//<![CDATA[
  38.      /* Definir le sens de direction en fonction du panneau admin */
  39.      var tickerDirParam = "{switch_ticker.DIRECTION}";
  40.      var slid_vert = false;
  41.      var auto_dir = 'next';
  42.      var h_perso = parseInt({switch_ticker.HEIGHT});
  43.  
  44.      switch( tickerDirParam )
  45.      {
  46.         case 'top' :
  47.            slid_vert = true;
  48.            break;
  49.  
  50.         case 'left':
  51.            break;
  52.  
  53.         case 'bottom':
  54.            slid_vert = true;
  55.            auto_dir = 'prev';
  56.            break;
  57.  
  58.         case 'right':
  59.            auto_dir = 'prev';
  60.            break;
  61.  
  62.         default:
  63.            slid_vert = true;
  64.      }
  65.  
  66.      $(document).ready(function() {
  67.  
  68.         var width_max = $('ul#fa_ticker_content').width();
  69.         var width_item = Math.floor(width_max / {switch_ticker.SIZE});
  70.  
  71.         if (width_max > 0)
  72.         {
  73.            $('#fa_ticker_content').css('display','block');
  74.  
  75.            $('ul#fa_ticker_content li').css('float','left').css('list-style','none').width(width_item).find('img').each(function () {
  76.               if ($(this).width() > width_item)
  77.               {
  78.               var ratio      = $(this).width() / width_item;
  79.               var new_height = Math.round($(this).height() / ratio);
  80.               $(this).height(new_height).width(width_item);
  81.               }
  82.            });
  83.  
  84.            if (slid_vert)
  85.            {
  86.               var height_max = h_perso;
  87.  
  88.               $('ul#fa_ticker_content li').each( function () {
  89.                  if ($(this).height() > height_max)
  90.                  {
  91.                     height_max = $(this).height();
  92.                  }
  93.               } );
  94.  
  95.               $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
  96.               $('ul#fa_ticker_content li').height(height_max);
  97.            }
  98.  
  99.            $('#fa_ticker_content').jcarousel({
  100.                  vertical: slid_vert,
  101.               wrap: 'circular',
  102.               auto: {switch_ticker.STOP_TIME},
  103.               auto_direction: auto_dir,
  104.            scroll: 1,
  105.            size: {switch_ticker.SIZE},
  106.            height_max: height_max,
  107.            animation: {switch_ticker.SPEED}
  108.            });
  109.         }
  110.         else
  111.         {
  112.            $('ul#fa_ticker_content li:not(:first)').css('display','none');
  113.            $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
  114.         }
  115.      });
  116.   //]]>
  117.    </script>
  118.    <!-- END switch_ticker_new -->
  119.  
  120.    <script type="text/javascript">
  121.    //<![CDATA[
  122.   jQuery().ready(function(){
  123.      <!-- BEGIN switch_enable_pm_popup -->
  124.         pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
  125.         if(pm != null) { pm.focus(); }
  126.      <!-- END switch_enable_pm_popup -->
  127.      <!-- BEGIN switch_report_popup -->
  128.         report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT={switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
  129.         if(report != null) { report.focus(); }
  130.      <!-- END switch_report_popup -->
  131.      <!-- BEGIN switch_ticker -->
  132.         $(window).load(function() {            
  133.            Ticker.start({
  134.               height : {switch_ticker.HEIGHT},
  135.               spacing : {switch_ticker.SPACING},
  136.               speed : {switch_ticker.SPEED},
  137.               direction : '{switch_ticker.DIRECTION}',
  138.               pause : {switch_ticker.STOP_TIME}
  139.            });
  140.         });
  141.      <!-- END switch_ticker -->
  142.   });
  143.  
  144.   <!-- BEGIN switch_login_popup -->
  145.      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = false, logInBackgroundClass = false;
  146.   <!-- END switch_login_popup -->
  147.  
  148.   <!-- BEGIN switch_login_popup -->
  149.   $(document).ready( function() {
  150.      $(window).resize(function() {
  151.         var windowWidth = document.documentElement.clientWidth;
  152.         var popupWidth = $("#login_popup").width();
  153.         var mypopup = $("#login_popup");
  154.  
  155.         $("#login_popup").css({
  156.         "left": windowWidth/2 - popupWidth/2
  157.            });
  158.      });
  159.   });
  160.   <!-- END switch_login_popup -->
  161.   //]]>
  162.    </script>
  163.    {GREETING_POPUP}
  164.    <!-- BEGIN switch_ticker_new -->
  165.    <style>
  166.    .jcarousel-skin-tango .jcarousel-item {
  167.       text-align:center;
  168.       width: 10px;
  169.    }
  170.  
  171.    .jcarousel-skin-tango .jcarousel-item-horizontal {
  172.       margin-right: {switch_ticker.SPACING}px;
  173.    }
  174.  
  175.    .jcarousel-skin-tango .jcarousel-item-vertical {
  176.       margin-bottom: {switch_ticker.SPACING}px;
  177.    }.pun{
  178.     color: #b7b7b7!important;  
  179. }
  180.    </style>
  181.    <!-- END switch_ticker_new -->
  182.    {HOSTING_JS}
  183.    <!-- BEGIN google_analytics_code -->
  184.    <script type="text/javascript">
  185.    //<![CDATA[
  186.    var _gaq = _gaq || [];
  187.    _gaq.push(["_setAccount", "{G_ANALYTICS_ID}"]);
  188.    _gaq.push(["_trackPageview"]);
  189.   _gaq.push(['_trackPageLoadTime']);
  190.  
  191.   <!-- BEGIN google_analytics_code_bis -->
  192.   _gaq.push(['b._setAccount', '{G_ANALYTICS_ID_BIS}']);
  193.   _gaq.push(['b._trackPageview']);
  194.   <!-- END google_analytics_code_bis -->
  195.  
  196.    (function() {
  197.      var ga = document.createElement("script"); ga.type = "text/javascript"; ga.async = true;
  198.      ga.src = ("https:" == document.location.protocol ? "https://ssl" : "http://www") + ".google-analytics.com/ga.js";
  199.      var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(ga, s);
  200.    })();
  201.   //]]>
  202.    </script>
  203.    <!-- END google_analytics_code -->
  204. <link type="text/css" href="http://gzchampions.com/public/min/index.php?ipbv=4d373618a026a35e7af2195443e1e5a4&f=public/style_css/css_21/Badges.css,public/style_css/css_21/facebook_like_box.css,public/style_css/css_21/ipb_help.css,public/style_css/css_21/skinbox.css,public/style_css/css_21/loginSlide.css,public/style_css/css_21/splashpage.css,public/style_css/css_21/hook_socialLinks.css,public/style_css/css_21/ipb_common.css,public/style_css/css_21/ipb_styles.css,public/style_css/css_21/calendar_select.css,public/style_css/css_21/promenu_plus.css,public/style_css/css_21/tb_moods.css,public/style_css/css_21/vips.css,public/style_css/css_21/ipshoutbox.css,public/style_css/css_21/customSidebarBlocks.css" rel="stylesheet" charset="utf-8">  
  205.   <style type="text/css">
  206. /* latin-ext */
  207. @font-face {
  208.   font-family: 'Black Ops One';
  209.   font-style: normal;
  210.   font-weight: 400;
  211.   src: local('Black Ops One'), local('BlackOpsOne-Regular'), url(http://fonts.gstatic.com/s/blackopsone/v7/2XW-DmDsGbDLE372KrMW1X1PgMwFt2V-WJ2uOZ4WXLU.woff2) format('woff2');
  212.   unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
  213. }
  214. /* latin */
  215. @font-face {
  216.   font-family: 'Black Ops One';
  217.   font-style: normal;
  218.   font-weight: 400;
  219.   src: local('Black Ops One'), local('BlackOpsOne-Regular'), url(http://fonts.gstatic.com/s/blackopsone/v7/2XW-DmDsGbDLE372KrMW1TxObtw73-qQgbr7Be51v5c.woff2) format('woff2');
  220.   unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
  221. }
  222. /* latin */
  223. @font-face {
  224.   font-family: 'Carter One';
  225.   font-style: normal;
  226.   font-weight: 400;
  227.   src: local('Carter One'), local('CarterOne'), url(http://fonts.gstatic.com/s/carterone/v8/VjW2qt1pkqVtO22ObxgEBfk_vArhqVIZ0nv9q090hN8.woff2) format('woff2');
  228.   unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
  229. }
  230. /* cyrillic-ext */
  231. @font-face {
  232.   font-family: 'Roboto';
  233.   font-style: normal;
  234.   font-weight: 400;
  235.   src: local('Roboto'), local('Roboto-Regular'), url(http://fonts.gstatic.com/s/roboto/v15/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
  236.   unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
  237. }
  238. /* cyrillic */
  239. @font-face {
  240.   font-family: 'Roboto';
  241.   font-style: normal;
  242.   font-weight: 400;
  243.   src: local('Roboto'), local('Roboto-Regular'), url(http://fonts.gstatic.com/s/roboto/v15/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
  244.   unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  245. }
  246. /* greek-ext */
  247. @font-face {
  248.   font-family: 'Roboto';
  249.   font-style: normal;
  250.   font-weight: 400;
  251.   src: local('Roboto'), local('Roboto-Regular'), url(http://fonts.gstatic.com/s/roboto/v15/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
  252.   unicode-range: U+1F00-1FFF;
  253. }
  254. /* greek */
  255. @font-face {
  256.   font-family: 'Roboto';
  257.   font-style: normal;
  258.   font-weight: 400;
  259.   src: local('Roboto'), local('Roboto-Regular'), url(http://fonts.gstatic.com/s/roboto/v15/u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
  260.   unicode-range: U+0370-03FF;
  261. }
  262. /* vietnamese */
  263. @font-face {
  264.   font-family: 'Roboto';
  265.   font-style: normal;
  266.   font-weight: 400;
  267.   src: local('Roboto'), local('Roboto-Regular'), url(http://fonts.gstatic.com/s/roboto/v15/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
  268.   unicode-range: U+0102-0103, U+1EA0-1EF1, U+20AB;
  269. }
  270. /* latin-ext */
  271. @font-face {
  272.   font-family: 'Roboto';
  273.   font-style: normal;
  274.   font-weight: 400;
  275.   src: local('Roboto'), local('Roboto-Regular'), url(http://fonts.gstatic.com/s/roboto/v15/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
  276.   unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
  277. }
  278. /* latin */
  279. @font-face {
  280.   font-family: 'Roboto';
  281.   font-style: normal;
  282.   font-weight: 400;
  283.   src: local('Roboto'), local('Roboto-Regular'), url(http://fonts.gstatic.com/s/roboto/v15/CWB0XYA8bzo0kSThX0UTuA.woff2) format('woff2');
  284.   unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
  285. }    
  286.   </style>    
  287.   </head>
  288.  
  289. <body>
  290.    <!-- BEGIN hitskin_preview -->
  291.    <div id="hitskin_preview" style="display: block;">
  292.       <h1><img src="http://illiweb.com/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
  293.       <div class="content">
  294.          <p>
  295.             {hitskin_preview.L_THEME_SITE_PREVIEW}
  296.             <br />
  297.             <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
  298.          </p>
  299.       </div>
  300.    </div>
  301.    <!-- END hitskin_preview -->
  302.  
  303.    <!-- BEGIN switch_login_popup -->
  304.    <div id="login_popup" class="module main">
  305.       <div id="login_popup_title" class="main-head">
  306.          <div class="h3">{SITENAME}</div>
  307.       </div>
  308.       <div class="main-content">
  309.          {LOGIN_POPUP_MSG}
  310.          <div id="login_popup_buttons">
  311.             <form action="{S_LOGIN_ACTION}" method="get">
  312.                <input type="submit" class="button2" value="{L_LOGIN}" />
  313.                <input type="button" class="button2" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
  314.                <input id="login_popup_close" type="button" class="button2" value="{L_DONT_DISPLAY_AGAIN}" />
  315.             </form>
  316.          </div>
  317.       </div>
  318.    </div>
  319.    <!-- END switch_login_popup -->
  320.  
  321.    <a id="top" name="top" accesskey="t"></a>
  322.  
  323.    <div class="minwidth_IE">
  324.       <div class="layout_IE">
  325.          <div class="container_IE">
  326. <div id="bg-top"><div id="bg-left"><div id="bg-right"><div id="bg-bottom">
  327. <div class="width">
  328. <div class="border-left"><div class="border-right">
  329. <div id="ipbwrapper">
  330. <div class="coolbar"></div>
  331.  
  332.  
  333. <div id="secondary_navigation" class="clearfix">
  334. <ol class="breadcrumb top ipsList_inline left" id="breadcrumb">
  335. <li itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb" class="first">
  336. <a href="http://gzchampions.com/" itemprop="url" style="">
  337. <span itemprop="title">GzChampions</span>
  338. </a>
  339. </li>
  340. </ol>
  341. <ul id="secondary_links" class="ipsList_inline right">
  342. <li><a href="http://gzchampions.com/index.php?app=core&module=search&do=viewNewContent&search_app=forums" accesskey="2">View New Content</a></li>
  343. <li><a href="http://gzchampions.com/index.php?app=core&module=global&section=navigation&inapp=forums" rel="quickNavigation" accesskey="9" id="quickNavLaunch" title=""><img src="http://gzchampions.com/public/style_images/ORIGINAL/clear.gif" alt="" data-tooltip="Open Quick Navigation"></a></li>
  344. </ul>
  345. </div>
  346.  
  347. <div id="branding"><div id="branding_left"><div id="branding_right">
  348. <div id="user_navigation" class="not_logged_in">
  349.                        
  350.                         <ul class="ipsList_inline">
  351.                         <!-- BEGIN switch_user_logged_in -->
  352. <li><a href="/profile?mode=editprofile" title="Editar Perfil">
  353.                           <script>
  354. jQuery(document).ready(function(){
  355.   jQuery.get('/profile?mode=editprofile&page_profil=avatars', function(data) {
  356.      link = jQuery('.frm dl dd img', data).attr('src');
  357.       if(link){
  358.                             jQuery('#avatar').html('<center><img src="'+link+'" alt="" /></center>');
  359.       }else{
  360.         jQuery('#avatar').html('');
  361.       }
  362.   });
  363. });
  364. </script><div id="avatar"><center></center></div>
  365.                              
  366.                                  <li><a class="profilename" href="/profile?mode=editprofile"><span class="USERNAME"></span></a></li>
  367.                                 <li><a data-clicklaunch="getInboxList" id="inbox_link" href="/privmsg?folder=inbox" title="Leer Mensajes Privados"><img src="http://i.imgur.com/TeAddws.gif" alt="" style="margin-top: 7px;"> </a></li>
  368.                                 <li><a id="notify_link" href="/search?search_id=watchsearch" title="Ver Todas las Notificaciones"><img src="http://i.imgur.com/TeAddws.gif" alt="" style="margin-top: 7px;">&nbsp;</a></li>
  369.                                 <li><a href="/login?logout">Cerrar Sesion</a></li>
  370.                         <!-- END switch_user_logged_in -->
  371.  <!-- BEGIN switch_user_logged_out -->    
  372. <li>
  373. <span class="services">
  374.     <a href="/#" style=""><img src="http://gzchampions.com/public/style_images/ORIGINAL/loginmethods/facebook.png" alt="Log in with Facebook"></a>
  375.     <a href="/#" style=""><img src="http://gzchampions.com/public/style_images/ORIGINAL/loginmethods/twitter.png" alt="Log in with Twitter"></a>
  376. </span>
  377. <a onclick="jQuery('#document_modal').fadeToggle();" title="Sign In" id="sign_in" style=""><img src="http://gzchampions.com/public/style_images/ORIGINAL/user_login.png" alt=""> Sign In</a>
  378. </li>
  379. <li>
  380.   <a href="/register" title="Create Account" id="register_link"><img src="http://gzchampions.com/public/style_images/ORIGINAL/user_register.png" alt=""> Create Account</a>
  381. </li>
  382. </ul>
  383. <!-- END switch_user_logged_out -->  
  384. </div>
  385. <div id="logo">
  386. <a href="{U_INDEX}" title="Go to community index" rel="home" accesskey="1" style="color: rgb(212, 127, 255);"><img src="http://gzchampions.com/public/style_images/ORIGINAL/logo.png" alt="Logo"></a>
  387. </div>
  388. </div></div></div>
  389. <div id="nav_wrap" class="clearfix">
  390. <ul>
  391. <li id="nav_backgrounds" class="right" data-target-domballoon="bgpicker"><a href="#"><img src="http://gzchampions.com/public/style_images/ORIGINAL/_custom/switch.png"></a></li>
  392. </ul>
  393.  
  394.  
  395. <div id="primary_nav" class="clearfix">
  396. <ul class="ipsList_inline" id="community_app_menu">
  397. <li id="nav_app_members" class=" ">
  398. <a id="cpromenu_6" class="  " style="" href="#">
  399. <span>
  400. Members
  401. </span>
  402. </a>
  403. </li>
  404. <script>
  405.    projQ("#nav_app_members").ProActivationByUrl({ByUrlGroup: 1, ByUrlMenu: 1 });
  406. </script>
  407. <li id="nav_app_contactus" class=" ">
  408. <a id="cpromenu_10" class="  " style="" href="#">
  409. <span>
  410. Contact Us
  411. </span>
  412. </a>
  413. </li>
  414. <script>
  415.    projQ("#nav_app_contactus").ProActivationByUrl({ByUrlGroup: 1, ByUrlMenu: 1 });
  416. </script>
  417. <li id="nav_app_ihost" class=" ">
  418. <a id="cpromenu_16" class="  " href="#">
  419. <span>
  420. IMGUPLOAD
  421. </span>
  422. </a>
  423. </li>
  424. <script>
  425.    projQ("#nav_app_ihost").ProActivationByUrl({ByUrlGroup: 1, ByUrlMenu: 1 });
  426. </script>
  427. <li id="nav_app_25" class=" ">
  428. <a id="cpromenu_25" class="  " style="" href="#">
  429. <span>
  430. VIP
  431. </span>
  432. </a>
  433. </li>
  434. <script>
  435.    projQ("#nav_app_25").ProActivationByUrl({ByUrlGroup: 1, ByUrlMenu: 1 });
  436. </script>
  437. <script>
  438.             projQ(document).ready(function() {
  439.                projQ("#community_app_menu,#more_apps_menucontent").ProActivation({ Activation: 1}).ProMenuJs({       Step:0,MenuBehavior: 1,OpenSpeed: 200, CloseSpeed: 200, OpenAnimation: 'show', CloseAnimation: 'hide', TopOffSet: 10, HoverSensitivity: 500, zindex: 15000 });
  440.             });
  441.          </script>
  442. <li id="nav_more" data-dropdown=""><a href="#">EXTRA <img src="http://gzchampions.com/public/style_images/ORIGINAL/_custom/dropdown_arrow.png" alt=""></a>
  443. <ul class="sb-dropdown-off" style="display: none;">
  444. <li><a href="http://gzchampions.com/radio/index.php" target="blank"><img src="/uploads/custom/star.png"> RADIO</a></li>
  445. <li><a href="http://gzchampions.com/gallery/" target="blank"><img src="/uploads/custom/star.png"> GALLERY</a></li>
  446. <li><a href="http://gzchampions.com/upz/" target="blank"><img src="/uploads/custom/star.png"> FAST UPLOAD</a></li>
  447. <li><a href="http://gzchampions.com/randomizer/" target="blank"><img src="/uploads/custom/star.png"> RANDOMIZER</a></li>
  448. </ul></li>
  449. <li id="nav_more" data-dropdown=""><a href="#" style="">Ranking <img src="http://gzchampions.com/public/style_images/ORIGINAL/_custom/dropdown_arrow.png" alt=""></a>
  450. <ul class="sb-dropdown-off" style="display: none;">
  451. <li><a href="http://gzchampions.com/topic/1788-gzchampions-individual-ranking/" target="blank"><img src="/uploads/custom/star.png">INDIVIDUAL RANKING</a></li>
  452. <li><a href="http://gzchampions.com/topic/1412-female-ranking-2014/" target="blank"><img src="/uploads/custom/star.png">FEMALE RANKING</a></li>
  453. </ul></li>
  454. <li id="nav_more" data-dropdown=""><a href="#">Rules <img src="http://gzchampions.com/public/style_images/ORIGINAL/_custom/dropdown_arrow.png" alt=""></a>
  455. <ul class="sb-dropdown-off" style="display: none;">
  456. <li><a href="http://gzchampions.com/index.php?app=cp&do=show&pageId=2" target="blank"><img src="/uploads/custom/star.png"> ENGLISH</a></li>
  457. <li><a href="http://gzchampions.com/index.php?app=cp&do=show&pageId=5" target="blank"><img src="/uploads/custom/star.png"> ARABIC</a></li>
  458. <li><a href="http://gzchampions.com/index.php?app=cp&do=show&pageId=3" target="blank"><img src="/uploads/custom/star.png"> ITALIAN</a></li>
  459. <li><a href="http://gzchampions.com/index.php?app=cp&do=show&pageId=4" target="blank"><img src="/uploads/custom/star.png"> FRENCH</a></li>
  460. </ul></li>
  461. <li id="nav_more" data-dropdown="">
  462. <a href="#">More <img src="http://gzchampions.com/public/style_images/ORIGINAL/_custom/dropdown_arrow.png" alt=""></a>
  463. <ul class="sb-dropdown-off" style="display: none;">
  464. <li><a href="https://twitter.com/gzchampions"><img src="http://gzchampions.com/public/style_images/ORIGINAL/_custom/icon-social_twitter.png" alt=""> Follow Us on Twitter</a></li>
  465. <li><a href="https://www.facebook.com/pages/Gzchampions/1490763001140200"><img src="http://gzchampions.com/public/style_images/ORIGINAL/_custom/icon-social_facebook.png" alt=""> Like Us on Facebook</a></li>
  466. <li><a href="https://www.youtube.com/channel/UC8iBvMapvXM_RqivNBp87sQ"><img src="http://gzchampions.com/public/style_images/ORIGINAL/_custom/icon-social_youtube.png" alt=""> Subscribe on Youtube</a></li>
  467. <li><a href="https://plus.google.com/+GzchampionsNet"><img src="http://gzchampions.com/public/style_images/ORIGINAL/_custom/googlep.png" alt="Google plus page">Google+</a></li>
  468. </ul>
  469. </li>
  470. <li id="nav_other_apps" style="display: none">
  471. <a href="#" class="ipbmenu" id="more_apps">More <img src="http://gzchampions.com/public/style_images/ORIGINAL/useropts_arrow.png"></a>
  472. </li>
  473. </ul>
  474. </div>
  475. </div>
  476. <div class="coolbar2"></div><br>
  477. <div class="category_block block_wrap"><h3 class="maintitle" style="font-family: 'Carter One',cursive;"><a href="http://gamezconnect.com/en/group/gamezervip" title="Ver para unirse">Bienvenidos a la sala Gamezer Vip</a></h3>
  478. <div class="border"><div class="ipsBox table_wrap removeDefault"><div class="ipsBox_container" style="font-family: 'Carter One',cursive;">
  479. <font color="#121212">.</font><center>
  480. <a class="oswald cfont"><span class="value"><font color="#333333"><font size="4">Group ID: </font></font></span> <font size="4">Gamezer</font></a> <font color="#121212">_</font>
  481. <a class="oswald cfont"><span class="value"><font color="#333333"><font size="4">Password: </font></font></span> <font size="4">123456</font></a> <font color="#121212">_</font>
  482. <a class="oswald cfont"><span class="value"><font color="#333333"><font size="4">------ </font></font></span> <font size="4"></font></a><a href="/register" class="oswald cfont"><font size="4">REGISTRARSE EN NUESTRA SALA</font></a>
  483. </center><font color="#121212">.</font><table class="ipb_table" summary="Forums within the category 'Bienvenidos a la sala Gamezer Vip">
  484. <tbody><tr class="header">
  485. <!-- / CAT HEADER -->
  486. </tr></tbody></table></div></div></div><div class="catend"></div><br></div>
  487.  
  488. <div id="content" class="clearfix">                          
  489.             <div class="pun">
  490.  
  491.                <!-- BEGIN switch_ticker_new -->
  492.                <div id="fa_ticker_block" style="padding-top:4px;">
  493.                   <div class="module main">
  494.                      <div class="main-content clearfix">
  495.                         <div id="fa_ticker_container">
  496.                            <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display: none;width: 100%;">
  497.                               <!-- BEGIN ticker_row -->
  498.                               <li>{switch_ticker.ticker_row.ELEMENT}</li>
  499.                               <!-- END ticker_row -->
  500.                            </ul>
  501.                         </div>
  502.                      </div>
  503.                   </div>
  504.                </div>
  505.                <!-- END switch_ticker_new -->
  506.  
  507.                <!-- BEGIN switch_ticker -->
  508.                <div id="fa_ticker_block" style="padding-top:4px;">
  509.                   <div class="module main">
  510.                      <div class="main-content clearfix">
  511.                         <div id="fa_ticker_container">
  512.                            <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
  513.                               <div class="fa_ticker_content">
  514.                                  <!-- BEGIN ticker_row -->
  515.                                  <div>{switch_ticker.ticker_row.ELEMENT}</div>
  516.                                  <!-- END ticker_row -->
  517.                               </div>
  518.                            </div>
  519.                         </div>
  520.                      </div>
  521.                   </div>
  522.                </div>
  523.                <!-- END switch_ticker -->
  524.  
  525.                <div id="page-body">
  526.                   <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
  527.                      <div id="outer-wrapper">
  528.                         <div id="wrapper">
  529.                            <div id="container">
  530.                               <div id="content">
  531.                                  <div id="{ID_LEFT}">
  532.                                     <!-- BEGIN giefmod_index1 -->
  533.                                     {giefmod_index1.MODVAR}
  534.                                     <!-- BEGIN saut -->
  535.                                     <div style="height:{SPACE_ROW}px"></div>
  536.                                     <!-- END saut -->
  537.                                     <!-- END giefmod_index1 -->
  538.                                  </div>
  539.                                  <div id="main">
  540.                                     <div id="main-content">
  541.  
  542. <!-- BEGIN html_validation -->
  543.                                     </div>
  544.                                  </div>
  545.                               </div>
  546.                            </div>
  547.                         </div>
  548.                      </div>
  549.                   </div>
  550.                </div>
  551.             </div>
  552.          </div>
  553.       </div>
  554.    </div>
  555. </body>
  556. </html>
  557. <!-- END html_validation -->
  558.  
  559. <!-- #region sign_in_popup -->
  560.     <div id="document_modal" class="modal" style="display:none; width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; z-index: 10000; opacity: 0.4; background-color: transparent ;"></div>
  561.     <div id="sign_in_popup_popup" style="display:none; z-index: 10001; top: 25%; left: 24%; position: fixed;" class="popupWrapper">
  562.         <div id="sign_in_popup_inner" class="popupInner" style="width: 600px; max-height: 641px;">
  563.             <div style="" class="ipbfs_login" id="inline_login_form">
  564.                 <form id="login" method="post" action="/login.forum">
  565.                 <h3>Sign In</h3>
  566.                 <!-- BEGIN switch_fb_connect -->
  567.                 <div class="ipsBox_notice">
  568.                   <ul class="ipsList_inline">
  569.                       <li>
  570.                         <a class="ipsButton_secondary" href="/facebook_connect.forum" v="2" scope="{switch_user_login_form_header.switch_fb_connect.L_FB_PERMISSIONS}">
  571.                             <img alt="Facebook" src="http://i69.servimg.com/u/f69/16/62/61/50/facebo10.png">  Use Facebook
  572.                         </a>
  573.                       </li>
  574.                   </ul>
  575.                 </div>
  576.                 <!-- END switch_fb_connect -->
  577.                     <div class="ipbfs_login_row">
  578.                         <div class="ipbfs_login_col">
  579.                           <span class="right desc lighter blend_links"><a href="/register" title="Register now!">Register now!</a></span>
  580.                             <strong><label for="ips_username">Username</label></strong>
  581.                             <div class="ipsField_content">
  582.                                 <input type="text" tabindex="1" size="30" placeholder="Username" name="username" class="input_text ipbfs_login_input ipbfs_luser" id="ips_username">
  583.                             </div>
  584.                         </div>
  585.                         <div class="ipbfs_login_col">
  586.                           <span class="right desc lighter blend_links"><a href="/profile?mode=sendpassword" title="redordar contraseña">He olvidado mi contraseña</a></span>
  587.                             <strong><label for="ips_password">Password</label></strong>
  588.                             <div class="ipsField_content">
  589.                                 <input type="password" tabindex="2" size="30" placeholder="Password" name="password" class="input_text ipbfs_login_input ipbfs_lpassword" id="ips_password"><br>
  590.                                 </div>
  591.                         </div>
  592.                     </div>
  593.                     <div class="clearfix">
  594.                         <div class="ipbfs_login_col">
  595.                             <input type="checkbox" class="input_check left" value="1" name="autologin" checked="checked" id="autologin">
  596.                             <div style="padding-left: 20px;">
  597.                                 <label for="autologin">
  598.                                     <strong>Remember me</strong>
  599.                                     <span style="display: block; padding-top: 5px;" class="desc lighter">This is not recommended for shared computers</span>
  600.                                 </label>
  601.                             </div>
  602.                         </div>
  603.  
  604.                     </div>
  605.                     <div class="ipsForm_submit ipsForm_center clear" style="height: 29px;">
  606.                         <input type="submit" name="login" value="Sign In" class="input_submit">
  607.                         <input name="redirect" type="hidden" value="" />                  
  608.                     </div>
  609.                 </form>
  610.             </div>
  611.         </div>
  612.       <div id="sign_in_popup_close" class="popupClose clickable">
  613.           <img alt="x" src="http://i78.servimg.com/u/f78/18/17/62/92/close_10.png" onclick="show_popup('sign_in_popup_popup');">
  614.       </div>
  615.     </div>
  616.     <script type="text/javascript">
  617.       //<![CDATA[
  618.      $(document).ready(function() {
  619.          $('#user_navigation #sign_in').attr('href', '#').attr('onclick', "show_popup('sign_in_popup_popup');");
  620.          /*
  621.          $('#user_navigation #sign_in').click(function() {
  622.            sign_in_popup();
  623.          });
  624.          */
  625.      });
  626.      function show_popup(id) {
  627.          var $oObj = $('#'+id);
  628.          if ($oObj.css('display') == 'none') {
  629.            $oObj.add('#document_modal').fadeIn('slow');
  630.            $("input:text:eq(0):visible").focus();
  631.          } else {
  632.            $oObj.add('#document_modal').fadeOut('slow');
  633.          }
  634.      }
  635.      //]]>
  636.     </script>
  637.     <style type="text/css">
  638.       <!--
  639.        .popupWrapper {
  640.            background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
  641.            border-radius: 5px 5px 5px 5px;
  642.            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  643.            padding: 8px;
  644.        }
  645.        .ipbfs_login .ipsForm_submit {
  646.            margin-top: 0;
  647.        }
  648.        .ipbfs_login .ipsBox_notice {
  649.        margin: 0;
  650.        }
  651.        .ipbfs_login .input_submit {
  652.            font-size: 13px;
  653.        }
  654.        #sign_in_popup_inner {
  655.            width: 680px !important;
  656.        }
  657.        .popupInner {
  658.            box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  659.            overflow-x: hidden;
  660.            overflow-y: auto;
  661.            width: 500px;
  662.        }
  663. .popupInner h3 {
  664. border-bottom: 1px solid #2a2a2a;
  665. text-shadow: rgba(0,0,0,0.8) 0px -1px 0px;
  666. background: #282828 url('http://gzchampions.com/public/style_images/ORIGINAL/highlight_reallyfaint.png') repeat-x 0 0;
  667. padding: 8px 10px 9px;
  668. font-size: 16px;
  669. font-weight: 300;
  670. }  
  671. .border, .statistics, .post_block, .ipsComment, .popupInner, .no_messages, .poll_question ol, .ipsBox_container, .ipsFloatingAction, .column_view .post_body {
  672. background: #121212;
  673. }
  674.        .ipsBox_notice {
  675.            line-height: 1.6;
  676.            margin-bottom: 10px;
  677.            padding: 10px;
  678.        }
  679.        .ipsBox_notice, .ipsBox_highlight {
  680.            background: none repeat scroll 0 0 #F4FCFF;
  681.            border-bottom: 1px solid #CAE9F5;
  682.        }
  683.        .ipbfs_login_row {
  684.            overflow: hidden;
  685.        }
  686.        .ipbfs_login_row, .gallery_pane h2, .ipsBox_container .ipsType_pagetitle, .ipsType_sectiontitle, #index_stats .status_list:first-of-type li:first-child, .ipsList_data li:first-of-type, .ipsList_withminiphoto li:first-of-type, .ipsList_withmediumphoto li:first-of-type, .category_block table tr:nth-of-type(2) td {
  687.            border-top: 0 none;
  688.        }
  689. #recentajaxcontent li, #idm_categories a, #index_stats .status_list li, #panel_files .file_listing li, #panel_screenshots #ss_linked li, .file_listing, #cart_totals td, div#member_filters li, #files li, .ipsType_sectiontitle, #order_review td, #package_details .package_info, .block_list li, .package_view_top, .member_entry, #help_topics li, .ipsBox_container .ipsType_pagetitle, .userpopup dl, #announcements td, .preview_info, .sideVerticalList li, fieldset.with_subhead ul, .ipsList_data li, .ipsList_withminiphoto li, table.ipb_table td, .store_categories li, #mini_cart li, #index_stats div[id*="statusReply"], #ipg_category .ipg_category_row, .gallery_pane h2, .status_feedback li[id*="statusReply"], .ipsSideMenu ul li, .sb_login_row, .sb_login .clearfix, .articles .block-1, .articles .type-1x2x2 .article_row, #idm_category .idm_category_row, #category_list li a, .ipsComment {
  690. border-top: 1px solid #252525;
  691. border-bottom: 1px solid #000;
  692. }
  693.        .ipbfs_login_col {
  694.            float: left;
  695.            padding: 15px 10px;
  696.            width: 314px;
  697.        }
  698.        .desc.lighter, .desc.lighter.blend_links a {
  699.            color: #646464;
  700.        }
  701.        .desc, .desc.blend_links a, p.posted_info {
  702.            color: #898989;
  703.            font-size: 11px;
  704.        }
  705.        .right {
  706.            float: right;
  707.        }
  708.        .ipbfs_login_col a:hover {
  709.            text-decoration: underline;
  710.        }
  711.        .ipbfs_login_row label {
  712.            font-size: 1.15em;
  713.        }
  714.        input:-moz-placeholder {
  715.            color: #939393;
  716.        }
  717.        .ipbfs_luser {
  718.            background-image: url("http://i78.servimg.com/u/f78/18/17/62/92/user10.png") !important;
  719.            background-position: 7px 60% !important;
  720.            background-repeat: no-repeat !important;
  721.        }
  722.        .ipbfs_login_input {
  723.            font-size: 14px !important;
  724.            margin-top: 10px;
  725.            padding: 6px 0 6px 28px !important;
  726.            width: 284px;
  727.        }
  728. .input_text, .ipsTagBox_wrapper, textarea, #recaptcha_response_field {
  729.    padding: 6px;
  730.    border: 1px solid #383838;
  731.    background: none repeat scroll 0% 0% #292929;
  732.    color: #B7B7B7;
  733.    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
  734.    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2) inset;
  735. }
  736.        input, select, textarea {
  737.            font: 12px tahoma,helvetica,arial,sans-serif;
  738.        }
  739.        .ipbfs_lpassword {
  740.            background-image: url("http://i78.servimg.com/u/f78/18/17/62/92/key10.png");
  741.            background-position: 7px 60% !important;
  742.            background-repeat: no-repeat !important;
  743.        }
  744.        .clearfix:after {
  745.            clear: both;
  746.            content: ".";
  747.            display: block;
  748.            height: 0;
  749.            overflow: hidden;
  750.            visibility: hidden;
  751.        }
  752.        .left {
  753.            float: left;
  754.        }
  755.        img, .input_check, .input_radio {
  756.            vertical-align: middle;
  757.        }
  758.        .ipsForm_center {
  759.            text-align: center !important;
  760.        }
  761.        .ipsForm_submit {
  762.            margin-top: 25px;
  763.            padding: 5px 10px;
  764.            text-align: right;
  765.        }
  766.        .clear {
  767.            clear: both;
  768.        }
  769. body#ipboard_body fieldset.submit, body#ipboard_body p.submit, .ipsForm_submit {
  770.    background: url('http://gzchampions.com/public/style_images/ORIGINAL/highlight_reallyfaint.png') repeat-x scroll 0px -1px #232323;
  771.    border-top: 1px solid #373737;
  772. }
  773.        .popupClose {
  774.            position: absolute;
  775.            right: 20px;
  776.            top: 20px;
  777.        }
  778.        .clickable {
  779.            cursor: pointer;
  780.        }
  781.        .input_submit, .ipsButton_secondary {
  782.            outline: medium none;
  783.        }
  784. .input_submit {
  785.    background: url('http://gzchampions.com/public/style_images/ORIGINAL/highlight_faint.png') repeat-x scroll 0px 0px #373737;
  786.    border-color: #3F3F3F;
  787.    color: #EEE;
  788.    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  789.    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
  790.    border-radius: 2px;
  791.    font-weight: bold !important;
  792. }
  793.        .pun h2, .pun h3, .pun input, .pun select, .pun th {
  794.            font-family: helvetica,arial,sans-serif !important;
  795.            font-size: 14px;
  796.            font-style: normal;
  797.            font-variant: normal;
  798.            font-weight: 300;
  799.        }
  800.        body {
  801.            color: #5a5a5a !important;
  802.            font: 11px tahoma,helvetica,arial,sans-serif !important;
  803.        }
  804.        -->
  805.     </style>
  806. <!-- #endregion sign_in_popup -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement