Advertisement
Guest User

Untitled

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