Advertisement
ItsDanyAndre

01 - Gentle Sea: Overall_Header

Dec 20th, 2020
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 14.31 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}"
  4. xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB} {NAMESPACE_BBCODE}>
  5. <head>
  6.    <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
  7.    <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}"/>
  8.    <meta http-equiv="content-script-type" content="text/javascript"/>
  9.    <meta http-equiv="content-style-type" content="text/css"/>
  10.    <!-- BEGIN switch_compat_meta -->
  11.    <meta http-equiv="X-UA-Compatible" content="IE={switch_compat_meta.VERSION}"/>
  12.    <!-- END switch_compat_meta -->
  13.    <!-- BEGIN switch_canonical_url -->
  14.    <link rel="canonical" href="{switch_canonical_url.CANONICAL_URL}"/>
  15.    <!-- END switch_canonical_url -->
  16.    {META_FAVICO}
  17.    {META}
  18.    {META_FB_LIKE}
  19.    <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}"/>
  20.    {T_HEAD_STYLESHEET}
  21.    {CSS}
  22.    <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}"/>
  23.    <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}"/>
  24.    <script src="{JQUERY_PATH}" type="text/javascript"></script>
  25.    <!-- BEGIN switch_recent_jquery -->
  26.    <script src="{JS_DIR}jquery1.9/jquery-migrate-1.4.1.js" type="text/javascript"></script>
  27.    <script src="{JQUERY_DIR}browser/v1.0/jquery.browser.min.js" type="text/javascript"></script>
  28.    <script src="{JQUERY_DIR}support/jquery.support.js" type="text/javascript"></script>
  29.    <!-- END switch_recent_jquery -->
  30.    <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>
  31.    {RICH_SNIPPET_GOOGLE}
  32.    <!-- BEGIN switch_fb_login -->
  33.    <script src="https://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
  34.    <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
  35.    <!-- END switch_fb_login -->
  36.    <!-- BEGIN switch_ticker -->
  37.    <link type="text/css" rel="stylesheet" href="{JQUERY_DIR}ticker/ticker.css"/>
  38.    <script src="{JQUERY_DIR}ticker/ticker.js" type="text/javascript"></script>
  39.    <!-- END switch_ticker -->
  40.    <!-- BEGIN switch_ticker_new -->
  41.    <script src="{JQUERY_DIR}jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
  42.    <script type="text/javascript">//<![CDATA[
  43.      /* Definir le sens de direction en fonction du panneau admin */
  44.      var tickerDirParam = "{switch_ticker.DIRECTION}";
  45.      var slid_vert = false;
  46.      var auto_dir = 'next';
  47.      var h_perso = parseInt({switch_ticker.HEIGHT});
  48.      
  49.      switch (tickerDirParam) {
  50.         case 'top' :
  51.             slid_vert = true;
  52.             break;
  53.      
  54.         case 'left':
  55.             break;
  56.      
  57.         case 'bottom':
  58.             slid_vert = true;
  59.             auto_dir = 'prev';
  60.             break;
  61.      
  62.         case 'right':
  63.             auto_dir = 'prev';
  64.             break;
  65.      
  66.         default:
  67.             slid_vert = true;
  68.      }
  69.      
  70.      $(document).ready(function () {
  71.      
  72.         $('#fa_ticker_content').css('display', 'block');
  73.      
  74.         var width_max = $('ul#fa_ticker_content').width();
  75.         var width_item = Math.floor(width_max / {switch_ticker.SIZE});
  76.      
  77.         if (width_max > 0) {
  78.             $('ul#fa_ticker_content li').css('float', 'left').css('list-style', 'none').width(width_item).find('img').each(function () {
  79.                 if ($(this).width() > width_item) {
  80.                     var ratio = $(this).width() / width_item;
  81.                     var new_height = Math.round($(this).height() / ratio);
  82.                     $(this).height(new_height).width(width_item);
  83.                 }
  84.             });
  85.      
  86.             if (slid_vert) {
  87.                 var height_max = h_perso;
  88.      
  89.                 $('ul#fa_ticker_content li').each(function () {
  90.                     if ($(this).height() > height_max) {
  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.      
  100.             $('#fa_ticker_content').jcarousel({
  101.                 vertical: slid_vert,
  102.                 wrap: 'circular',
  103.                 auto: {switch_ticker.STOP_TIME},
  104.                 auto_direction: auto_dir,
  105.                 scroll: 1,
  106.                 size: {switch_ticker.SIZE},
  107.                 height_max: height_max,
  108.                 animation: {switch_ticker.SPEED}
  109.             });
  110.         } else {
  111.             $('ul#fa_ticker_content li:not(:first)').css('display', 'none');
  112.             $('ul#fa_ticker_content li:first').css('list-style', 'none').css('text-align', 'center');
  113.         }
  114.      });
  115.      //]]>
  116.    </script>
  117.    <!-- END switch_ticker_new -->
  118.    <script type="text/javascript">//<![CDATA[
  119.      $(document).ready(function () {
  120.         <!-- BEGIN switch_enable_pm_popup -->
  121.         pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
  122.         if (pm != null) {
  123.             pm.focus();
  124.         }
  125.         <!-- END switch_enable_pm_popup -->
  126.         <!-- BEGIN switch_report_popup -->
  127.         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}');
  128.         if (report != null) {
  129.             report.focus();
  130.         }
  131.         <!-- END switch_report_popup -->
  132.         <!-- BEGIN switch_ticker -->
  133.         $(document).ready(function () {
  134.             Ticker.start({
  135.                 height: {switch_ticker.HEIGHT},
  136.                 spacing: {switch_ticker.SPACING},
  137.                 speed: {switch_ticker.SPEED},
  138.                 direction: '{switch_ticker.DIRECTION}',
  139.                 pause: {switch_ticker.STOP_TIME}
  140.             });
  141.         });
  142.         <!-- END switch_ticker -->
  143.      });
  144.      
  145.      <!-- BEGIN switch_login_popup -->
  146.      var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH},
  147.         logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = true, logInBackgroundClass = false;
  148.      <!-- END switch_login_popup -->
  149.      
  150.      <!-- BEGIN switch_login_popup -->
  151.      $(document).ready(function () {
  152.         $(window).resize(function () {
  153.             var windowWidth = document.documentElement.clientWidth;
  154.             var popupWidth = $("#login_popup").width();
  155.             var mypopup = $("#login_popup");
  156.      
  157.             $("#login_popup").css({
  158.                 "left": windowWidth / 2 - popupWidth / 2
  159.             });
  160.         });
  161.      });
  162.      <!-- END switch_login_popup -->
  163.      //]]>
  164.    </script>
  165.    {GREETING_POPUP}
  166.    <style type="text/css">
  167.       #page-footer, div.navbar, div.navbar ul.linklist {
  168.       display: block !important;
  169.       }
  170.       ul.linklist li.rightside, ul.linklist li.rightside a.copyright {
  171.       display: inline !important;
  172.       }
  173.       <!-- BEGIN switch_ticker_new -->
  174.       .jcarousel-skin-tango .jcarousel-item {
  175.       text-align: center;
  176.       width: 10px;
  177.       }
  178.       .jcarousel-skin-tango .jcarousel-item-horizontal {
  179.       margin-right: {switch_ticker.SPACING}px;
  180.       }
  181.       .jcarousel-skin-tango .jcarousel-item-vertical {
  182.       margin-bottom: {switch_ticker.SPACING}px;
  183.       }
  184.       <!-- END switch_ticker_new -->
  185.    </style>
  186.    {HOSTING_JS}
  187.    <!-- BEGIN google_analytics_code -->
  188.    <script async src="https://www.googletagmanager.com/gtag/js?id={G_ANALYTICS_ID}"></script>
  189.    <script>
  190.       window.dataLayer = window.dataLayer || [];
  191.       function gtag(){dataLayer.push(arguments);}
  192.       gtag('js', new Date());
  193.       gtag('config', '{G_ANALYTICS_ID}', {'anonymize_ip': true, 'store_gac': false, 'cookie_expires': 13 * 30 * 24 * 60 * 60});
  194.       <!-- BEGIN google_analytics_code_bis -->
  195.       gtag('config', '{G_ANALYTICS_ID_BIS}', {'anonymize_ip': true, 'store_gac': false, 'cookie_expires': 13 * 30 * 24 * 60 * 60});
  196.       <!-- END google_analytics_code_bis -->
  197.    </script>
  198.    <!-- END google_analytics_code -->
  199.    <link href="//solrainha.github.io/honeybee/honeybee.css" rel="stylesheet"/>
  200.    <link href="//solrainha.github.io/saturnicons/saturnicons.css" rel="stylesheet"/>
  201.    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"/>
  202.    <link href="https://fonts.googleapis.com/css2?family=Merienda:wght@400;700&family=Montserrat:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap" rel="stylesheet"/>
  203. </head>
  204. <body id="phpbb">
  205.    <!-- BEGIN hitskin_preview -->
  206.    <div id="hitskin_preview" style="display: block;">
  207.       <h1><img src="https://2img.net/i/fa/hitskin/hitskin_logo.png" alt=""/> <em>Hit</em>skin.com</h1>
  208.       <div class="content">
  209.          <p>
  210.             {hitskin_preview.L_THEME_SITE_PREVIEW}
  211.             <br/>
  212.             <span>{hitskin_preview.U_INSTALL_THEME}<a
  213.               href="https://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
  214.          </p>
  215.       </div>
  216.    </div>
  217.    <!-- END hitskin_preview -->
  218.    <!-- BEGIN switch_login_popup -->
  219.    <div id="login_popup" style="z-index: 10000 !important;">
  220.       <div class="h3">{SITENAME}</div>
  221.       {LOGIN_POPUP_MSG}
  222.       <div id="login_popup_buttons">
  223.          <form action="{S_LOGIN_ACTION}" method="get">
  224.             <input type="submit" class="button1" value="{L_LOGIN}"/>
  225.             <input type="button" class="button1" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';"/>
  226.             <input id="login_popup_close" type="button" class="button2" value="{L_DONT_DISPLAY_AGAIN}"/>
  227.          </form>
  228.       </div>
  229.    </div>
  230.    <!-- END switch_login_popup -->
  231.    <!-- BEGIN switch_like_popup -->
  232.    <div id="like_popup" style="z-index: 10000 !important;">
  233.       <div class="h3">{SITENAME}</div>
  234.       {LIKE_POPUP_MSG}
  235.       <div id="like_popup_buttons">
  236.          <form action="{S_LOGIN_ACTION}" method="get">
  237.             <input type="submit" class="button1" value="{L_LOGIN}"/>
  238.             <input type="button" class="button1" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';"/>
  239.             <input id="like_popup_close" type="button" class="button2" value="{L_LIKE_CLOSE}"/>
  240.          </form>
  241.       </div>
  242.    </div>
  243.    <!-- END switch_like_popup -->
  244.    <div class="conteneur_minwidth_IE">
  245.    <div class="conteneur_layout_IE">
  246.    <div class="conteneur_container_IE">
  247.    <div id="wrap">
  248.    <a id="top" name="top" accesskey="t"></a>
  249.    {JAVASCRIPT}
  250.    <div id="page-header">
  251.       <div class="headerbar">
  252.          <div class="inner">
  253.             <span class="corners-top"><span></span></span>
  254.             <div id="logo-desc">
  255.                <a href="{U_INDEX}" id="logo"><img loading="lazy" src="{LOGO}" alt="{L_INDEX}"/></a>
  256.                <div class="gstitlep">
  257.                   <!-- BEGIN switch_h1 -->
  258.                   <div id="site-title">{switch_h1.MAIN_SITENAME}</div>
  259.                   <!-- END switch_h1 -->
  260.                   <!-- BEGIN switch_desc -->
  261.                   <p>{switch_desc.SITE_DESCRIPTION}</p>
  262.                   <!-- END switch_desc -->
  263.                </div>
  264.             </div>
  265.             <span class="corners-bottom"><span></span></span>
  266.          </div>
  267.       </div>
  268.       <div class="navbar">
  269.          <div class="inner">
  270.             <span class="corners-top"><span></span></span>
  271.             <ul class="linklist navlinks{NAVBAR_BORDERLESS}">
  272.                <li class="gsbienv">
  273.                   BIENVENID@,
  274.                   <strong>
  275.                      <script>document.write(_userdata.username);</script>
  276.                   </strong>
  277.                </li>
  278.                <li>{GENERATED_NAV_BAR}</li>
  279.             </ul>
  280.             <!-- BEGIN switch_search_box -->
  281.             <div id="search-box">
  282.                <form method="get" action="{ACTION_SEARCH}" id="search">
  283.                   <p class="nomargin"><input type="text" name="search_keywords" id="keywords"
  284.                     maxlength="128" class="inputbox search"
  285.                     value="{L_SEARCH}..."
  286.                     onclick="if (this.value == '{L_SEARCH}...') this.value = '';"
  287.                     onblur="if (this.value == '') this.value = '{L_SEARCH}...';"/>
  288.                      {JS_SESSION_ID_INPUT}
  289.                      <input class="button2" type="submit" value="{L_SEARCH}"/>
  290.                   </p>
  291.                </form>
  292.             </div>
  293.             <!-- END switch_search_box -->
  294.             <span class="corners-bottom"><span></span></span>
  295.          </div>
  296.       </div>
  297.       <!-- BEGIN switch_ticker_new -->
  298.       <div id="fa_ticker_blockD" style="margin-top:4px;">
  299.          <div class="module">
  300.             <div class="inner">
  301.                <span class="corners-top"><span></span></span>
  302.                <div id="fa_ticker_container">
  303.                   <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display:none">
  304.                      <!-- BEGIN ticker_row -->
  305.                      <li>{switch_ticker.ticker_row.ELEMENT}</li>
  306.                      <!-- END ticker_row -->
  307.                   </ul>
  308.                </div>
  309.                <span class="corners-bottom"><span></span></span>
  310.             </div>
  311.          </div>
  312.       </div>
  313.       <!-- END switch_ticker_new -->
  314.       <!-- BEGIN switch_ticker -->
  315.       <div id="fa_ticker_block" style="margin-top:4px;">
  316.          <div class="module">
  317.             <div class="inner">
  318.                <span class="corners-top"><span></span></span>
  319.                <div id="fa_ticker_container">
  320.                   <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
  321.                      <div class="fa_ticker_content">
  322.                         <!-- BEGIN ticker_row -->
  323.                         <div>{switch_ticker.ticker_row.ELEMENT}</div>
  324.                         <!-- END ticker_row -->
  325.                      </div>
  326.                   </div>
  327.                </div>
  328.                <span class="corners-bottom"><span></span></span>
  329.             </div>
  330.          </div>
  331.       </div>
  332.       <!-- END switch_ticker -->
  333.    </div>
  334.    <div id="page-body">
  335.    <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
  336.    <div id="outer-wrapper">
  337.    <div id="wrapper">
  338.    <div id="container">
  339.    <div id="content">
  340.    <div id="{ID_LEFT}">
  341.       <!-- BEGIN giefmod_index1 -->
  342.       {giefmod_index1.MODVAR}
  343.       <!-- BEGIN saut -->
  344.       <div style="height:{SPACE_ROW}px"></div>
  345.       <!-- END saut -->
  346.       <!-- END giefmod_index1 -->
  347.    </div>
  348.    <div id="main">
  349.    <div id="main-content">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement