Advertisement
Guest User

Untitled

a guest
Dec 18th, 2019
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.78 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 href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet" />
  21. <link rel="stylesheet" href="https://i.icomoon.io/public/temp/2485c1ec5a/UntitledProject/style.css">
  22. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
  23. <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
  24. <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
  25. <script src="{JQUERY_PATH}" type="text/javascript"></script>
  26. <!-- BEGIN switch_recent_jquery -->
  27. <script src="{JS_DIR}jquery1.9/jquery-migrate-1.4.1.js" type="text/javascript"></script>
  28. <script src="{JQUERY_DIR}browser/v1.0/jquery.browser.min.js" type="text/javascript"></script>
  29. <script src="{JQUERY_DIR}support/jquery.support.js" type="text/javascript"></script>
  30. <!-- END switch_recent_jquery -->
  31. <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>
  32. {RICH_SNIPPET_GOOGLE}
  33.  
  34. <!-- BEGIN switch_fb_login -->
  35. <script src="https://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
  36. <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
  37. <!-- END switch_fb_login -->
  38.  
  39. <!-- BEGIN switch_ticker -->
  40. <link type="text/css" rel="stylesheet" href="{JQUERY_DIR}ticker/ticker.css" />
  41. <script src="{JQUERY_DIR}ticker/ticker.js" type="text/javascript"></script>
  42. <!-- END switch_ticker -->
  43.  
  44. <!-- BEGIN switch_ticker_new -->
  45. <script src="{JQUERY_DIR}jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
  46. <script type="text/javascript">
  47. //<![CDATA[
  48. /* Definir le sens de direction en fonction du panneau admin */
  49. var tickerDirParam = "{switch_ticker.DIRECTION}";
  50. var slid_vert = false;
  51. var auto_dir = 'next';
  52. var h_perso = parseInt({switch_ticker.HEIGHT});
  53.  
  54. switch( tickerDirParam )
  55. {
  56. case 'top' :
  57. slid_vert = true;
  58. break;
  59.  
  60. case 'left':
  61. break;
  62.  
  63. case 'bottom':
  64. slid_vert = true;
  65. auto_dir = 'prev';
  66. break;
  67.  
  68. case 'right':
  69. auto_dir = 'prev';
  70. break;
  71.  
  72. default:
  73. slid_vert = true;
  74. }
  75.  
  76. $(document).ready(function() {
  77.  
  78. $('#fa_ticker_content').css('display','block');
  79.  
  80. var width_max = $('ul#fa_ticker_content').width();
  81. var width_item = Math.floor(width_max / {switch_ticker.SIZE});
  82.  
  83. if (width_max > 0)
  84. {
  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. {
  88. var ratio = $(this).width() / width_item;
  89. var new_height = Math.round($(this).height() / ratio);
  90. $(this).height(new_height).width(width_item);
  91. }
  92. });
  93.  
  94. if (slid_vert)
  95. {
  96. var height_max = h_perso;
  97.  
  98. $('ul#fa_ticker_content li').each( function () {
  99. if ($(this).height() > height_max)
  100. {
  101. height_max = $(this).height();
  102. }
  103. } );
  104.  
  105. $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
  106. $('ul#fa_ticker_content li').height(height_max);
  107. }
  108.  
  109.  
  110. $('#fa_ticker_content').jcarousel({
  111. vertical: slid_vert,
  112. wrap: 'circular',
  113. auto: {switch_ticker.STOP_TIME},
  114. auto_direction: auto_dir,
  115. scroll: 1,
  116. size: {switch_ticker.SIZE},
  117. height_max: height_max,
  118. animation: {switch_ticker.SPEED}
  119. });
  120. }
  121. else
  122. {
  123. $('ul#fa_ticker_content li:not(:first)').css('display','none');
  124. $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
  125. }
  126. });
  127. //]]>
  128. </script>
  129. <!-- END switch_ticker_new -->
  130.  
  131. <script type="text/javascript">//<![CDATA[
  132. $(document).ready(function(){
  133. <!-- BEGIN switch_enable_pm_popup -->
  134. pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
  135. if(pm != null) { pm.focus(); }
  136. <!-- END switch_enable_pm_popup -->
  137. <!-- BEGIN switch_report_popup -->
  138. 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}');
  139. if(report != null) { report.focus(); }
  140. <!-- END switch_report_popup -->
  141. <!-- BEGIN switch_ticker -->
  142. $(document).ready(function() {
  143. Ticker.start({
  144. height : {switch_ticker.HEIGHT},
  145. spacing : {switch_ticker.SPACING},
  146. speed : {switch_ticker.SPEED},
  147. direction : '{switch_ticker.DIRECTION}',
  148. pause : {switch_ticker.STOP_TIME}
  149. });
  150. });
  151. <!-- END switch_ticker -->
  152. });
  153.  
  154. <!-- BEGIN switch_login_popup -->
  155. var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = true, logInBackgroundClass = false;
  156.  
  157. $(document).ready( function() {
  158. $(window).resize(function() {
  159. var windowWidth = document.documentElement.clientWidth;
  160. var popupWidth = $("#login_popup").width();
  161. var mypopup = $("#login_popup");
  162.  
  163. $("#login_popup").css({
  164. "left": windowWidth/2 - popupWidth/2
  165. });
  166. });
  167. });
  168. <!-- END switch_login_popup -->
  169. //]]>
  170. </script>
  171.  
  172. {GREETING_POPUP}
  173.  
  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. <!-- END switch_ticker_new -->
  197. </style>
  198.  
  199. {HOSTING_JS}
  200.  
  201. <!-- BEGIN google_analytics_code -->
  202. <script type="text/javascript">
  203. //<![CDATA[
  204. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  205. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  206. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  207. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  208.  
  209. ga('create', '{G_ANALYTICS_ID}', 'auto');
  210. ga('send', 'pageview');
  211. ga('set', 'anonymizeIp', true);
  212.  
  213. <!-- BEGIN google_analytics_code_bis -->
  214. ga('create', '{G_ANALYTICS_ID_BIS}', 'auto', 'bis');
  215. ga('bis.send', 'pageview');
  216. ga('bis.set', 'anonymizeIp', true);
  217. <!-- END google_analytics_code_bis -->
  218. //]]>
  219. </script>
  220. <!-- END google_analytics_code -->
  221.  
  222. <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700,700i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese" rel="stylesheet" />
  223. <style>
  224. @import url(http://fonts.googleapis.com/css?family=Open+Sans);
  225. #cssmenu,
  226. #cssmenu ul,
  227. #cssmenu ul li,
  228. #cssmenu ul li a,
  229. #cssmenu #menu-button {
  230. margin: 0;
  231. padding: 0;
  232. border: 0;
  233. list-style: none;
  234. line-height: 1;
  235. display: block;
  236. position: relative;
  237. -webkit-box-sizing: border-box;
  238. -moz-box-sizing: border-box;
  239. box-sizing: border-box;
  240. }
  241. #cssmenu:after,
  242. #cssmenu > ul:after {
  243. content: ".";
  244. display: block;
  245. clear: both;
  246. visibility: hidden;
  247. line-height: 0;
  248. height: 0;
  249. }
  250. #cssmenu #menu-button {
  251. display: none;
  252. }
  253. #cssmenu {
  254. width: auto;
  255. font-family: 'Open Sans', sans-serif;
  256. line-height: 1;
  257. background: #ffffff;
  258. position: fixed;
  259. z-index: 10;
  260. width: 100%;
  261. }
  262. #menu-line {
  263. position: absolute;
  264. top: 0;
  265. left: 0;
  266. height: 3px;
  267. background: #009ae1;
  268. -webkit-transition: all 0.25s ease-out;
  269. -moz-transition: all 0.25s ease-out;
  270. -ms-transition: all 0.25s ease-out;
  271. -o-transition: all 0.25s ease-out;
  272. transition: all 0.25s ease-out;
  273. }
  274. #cssmenu > ul > li {
  275. float: left;
  276. }
  277. #cssmenu.align-center > ul {
  278. font-size: 0;
  279. text-align: center;
  280. }
  281. #cssmenu.align-center > ul > li {
  282. display: inline-block;
  283. float: none;
  284. }
  285. #cssmenu.align-center ul ul {
  286. text-align: left;
  287. }
  288. #cssmenu.align-right > ul > li {
  289. float: right;
  290. }
  291. #cssmenu.align-right ul ul {
  292. text-align: right;
  293. }
  294. #cssmenu > ul > li > a {
  295. padding: 20px;
  296. font-size: 12px;
  297. text-decoration: none;
  298. text-transform: uppercase;
  299. color: #000000;
  300. -webkit-transition: color .2s ease;
  301. -moz-transition: color .2s ease;
  302. -ms-transition: color .2s ease;
  303. -o-transition: color .2s ease;
  304. transition: color .2s ease;
  305. }
  306. #cssmenu > ul > li:hover > a,
  307. #cssmenu > ul > li.active > a {
  308. color: #009ae1;
  309. }
  310. #cssmenu > ul > li.has-sub > a {
  311. padding-right: 25px;
  312. }
  313. #cssmenu > ul > li.has-sub > a::after {
  314. position: absolute;
  315. top: 21px;
  316. right: 10px;
  317. width: 4px;
  318. height: 4px;
  319. border-bottom: 1px solid #000000;
  320. border-right: 1px solid #000000;
  321. content: "";
  322. -webkit-transform: rotate(45deg);
  323. -moz-transform: rotate(45deg);
  324. -ms-transform: rotate(45deg);
  325. -o-transform: rotate(45deg);
  326. transform: rotate(45deg);
  327. -webkit-transition: border-color 0.2s ease;
  328. -moz-transition: border-color 0.2s ease;
  329. -ms-transition: border-color 0.2s ease;
  330. -o-transition: border-color 0.2s ease;
  331. transition: border-color 0.2s ease;
  332. }
  333. #cssmenu > ul > li.has-sub:hover > a::after {
  334. border-color: #009ae1;
  335. }
  336. #cssmenu ul ul {
  337. position: absolute;
  338. left: -9999px;
  339. }
  340. #cssmenu li:hover > ul {
  341. left: auto;
  342. }
  343. #cssmenu.align-right li:hover > ul {
  344. right: 0;
  345. }
  346. #cssmenu ul ul ul {
  347. margin-left: 100%;
  348. top: 0;
  349. }
  350. #cssmenu.align-right ul ul ul {
  351. margin-left: 0;
  352. margin-right: 100%;
  353. }
  354. #cssmenu ul ul li {
  355. height: 0;
  356. -webkit-transition: height .2s ease;
  357. -moz-transition: height .2s ease;
  358. -ms-transition: height .2s ease;
  359. -o-transition: height .2s ease;
  360. transition: height .2s ease;
  361. }
  362. #cssmenu ul li:hover > ul > li {
  363. height: 32px;
  364. }
  365. #cssmenu ul ul li a {
  366. padding: 10px 20px;
  367. width: 160px;
  368. font-size: 12px;
  369. background: #333333;
  370. text-decoration: none;
  371. color: #dddddd;
  372. -webkit-transition: color .2s ease;
  373. -moz-transition: color .2s ease;
  374. -ms-transition: color .2s ease;
  375. -o-transition: color .2s ease;
  376. transition: color .2s ease;
  377. }
  378. #cssmenu ul ul li:hover > a,
  379. #cssmenu ul ul li a:hover {
  380. color: #ffffff;
  381. }
  382. #cssmenu ul ul li.has-sub > a::after {
  383. position: absolute;
  384. top: 13px;
  385. right: 10px;
  386. width: 4px;
  387. height: 4px;
  388. border-bottom: 1px solid #dddddd;
  389. border-right: 1px solid #dddddd;
  390. content: "";
  391. -webkit-transform: rotate(-45deg);
  392. -moz-transform: rotate(-45deg);
  393. -ms-transform: rotate(-45deg);
  394. -o-transform: rotate(-45deg);
  395. transform: rotate(-45deg);
  396. -webkit-transition: border-color 0.2s ease;
  397. -moz-transition: border-color 0.2s ease;
  398. -ms-transition: border-color 0.2s ease;
  399. -o-transition: border-color 0.2s ease;
  400. transition: border-color 0.2s ease;
  401. }
  402. #cssmenu.align-right ul ul li.has-sub > a::after {
  403. right: auto;
  404. left: 10px;
  405. border-bottom: 0;
  406. border-right: 0;
  407. border-top: 1px solid #dddddd;
  408. border-left: 1px solid #dddddd;
  409. }
  410. #cssmenu ul ul li.has-sub:hover > a::after {
  411. border-color: #ffffff;
  412. }
  413. @media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  414. #cssmenu {
  415. width: 100%;
  416. }
  417. #cssmenu ul {
  418. width: 100%;
  419. display: none;
  420. }
  421. #cssmenu.align-center > ul,
  422. #cssmenu.align-right ul ul {
  423. text-align: left;
  424. }
  425. #cssmenu ul li,
  426. #cssmenu ul ul li,
  427. #cssmenu ul li:hover > ul > li {
  428. width: 100%;
  429. height: auto;
  430. border-top: 1px solid rgba(120, 120, 120, 0.15);
  431. }
  432. #cssmenu ul li a,
  433. #cssmenu ul ul li a {
  434. width: 100%;
  435. }
  436. #cssmenu > ul > li,
  437. #cssmenu.align-center > ul > li,
  438. #cssmenu.align-right > ul > li {
  439. float: none;
  440. display: block;
  441. }
  442. #cssmenu ul ul li a {
  443. padding: 20px 20px 20px 30px;
  444. font-size: 12px;
  445. color: #000000;
  446. background: none;
  447. }
  448. #cssmenu ul ul li:hover > a,
  449. #cssmenu ul ul li a:hover {
  450. color: #000000;
  451. }
  452. #cssmenu ul ul ul li a {
  453. padding-left: 40px;
  454. }
  455. #cssmenu ul ul,
  456. #cssmenu ul ul ul {
  457. position: relative;
  458. left: 0;
  459. right: auto;
  460. width: 100%;
  461. margin: 0;
  462. }
  463. #cssmenu > ul > li.has-sub > a::after,
  464. #cssmenu ul ul li.has-sub > a::after {
  465. display: none;
  466. }
  467. #menu-line {
  468. display: none;
  469. }
  470. #cssmenu #menu-button {
  471. display: block;
  472. padding: 20px;
  473. color: #000000;
  474. cursor: pointer;
  475. font-size: 12px;
  476. text-transform: uppercase;
  477. }
  478. #cssmenu #menu-button::after {
  479. content: '';
  480. position: absolute;
  481. top: 20px;
  482. right: 20px;
  483. display: block;
  484. width: 15px;
  485. height: 2px;
  486. background: #000000;
  487. }
  488. #cssmenu #menu-button::before {
  489. content: '';
  490. position: absolute;
  491. top: 25px;
  492. right: 20px;
  493. display: block;
  494. width: 15px;
  495. height: 3px;
  496. border-top: 2px solid #000000;
  497. border-bottom: 2px solid #000000;
  498. }
  499. #cssmenu .submenu-button {
  500. position: absolute;
  501. z-index: 10;
  502. right: 0;
  503. top: 0;
  504. display: block;
  505. border-left: 1px solid rgba(120, 120, 120, 0.15);
  506. height: 52px;
  507. width: 52px;
  508. cursor: pointer;
  509. }
  510. #cssmenu .submenu-button::after {
  511. content: '';
  512. position: absolute;
  513. top: 21px;
  514. left: 26px;
  515. display: block;
  516. width: 1px;
  517. height: 11px;
  518. background: #000000;
  519. z-index: 99;
  520. }
  521. #cssmenu .submenu-button::before {
  522. content: '';
  523. position: absolute;
  524. left: 21px;
  525. top: 26px;
  526. display: block;
  527. width: 11px;
  528. height: 1px;
  529. background: #000000;
  530. z-index: 99;
  531. }
  532. #cssmenu .submenu-button.submenu-opened:after {
  533. display: none;
  534. }
  535. }
  536.  
  537. </style>
  538. </link>
  539.  
  540. <body id="modernbb">
  541.  
  542.  
  543. <!-- BEGIN switch_user_logged_in -->
  544. <div id='cssmenu'>
  545. <ul>
  546. <li class='active'><img src="https://i.imgur.com/MamqHbX.png" style="width: 12px;height: auto;float: left;margin-top: 18px;margin-left: 5px;"><a href='/forum'>Início</a></li>
  547. <li><img src="https://image.flaticon.com/icons/png/512/33/33308.png" style="width: 12px;height: auto;float: left;margin-top: 18px;margin-left: 5px;"><a href='/memberlist'>Membros</a></li>
  548. <li><img src="http://www.picz.ge/img/s3/1604/5/d/d0740b599bf6.png" style="width: 12px;height: auto;float: left;margin-top: 18px;margin-left: 5px;"><a href='/privmsg?folder=inbox'>Mensagem Privadas</a></li>
  549. <li style="float: right;"><img src="https://pt.seaicons.com/wp-content/uploads/2015/11/Users-Exit-icon.png" style="width: 12px;height: auto;float: left;margin-top: 18px;margin-left: 5px;"><a href='login?logout'>Sair</a></li>
  550. <li style="float: right;"><img src="https://image.flaticon.com/icons/png/512/10/10003.png" style="width: 12px;height: auto;float: left;margin-top: 18px;margin-left: 5px;"><a href='/profile?mode=editprofile'>Perfil</a></li>
  551.  
  552. </ul>
  553. </div>
  554. <!-- END switch_user_logged_in -->
  555. <!-- BEGIN switch_user_logged_out -->
  556. <div id='cssmenu'>
  557. <ul>
  558. <li class='active'><img src="https://i.imgur.com/MamqHbX.png" style="width: 12px;height: auto;float: left;margin-top: 18px;margin-left: 5px;"><a href='/forum'>Início</a></li>
  559. <li><img src="https://image.flaticon.com/icons/png/512/33/33308.png" style="width: 12px;height: auto;float: left;margin-top: 18px;margin-left: 5px;"><a href='/memberlist'>Membros</a></li>
  560. <li style="float: right;"><a href='/register'>Criar Conta</a></li>
  561. <li><a href='/login'>Entrar</a></li>
  562. </ul>
  563. </div>
  564.  
  565. <!-- END switch_user_logged_out -->
  566.  
  567. <!-- BEGIN hitskin_preview -->
  568. <div id="hitskin_preview" style="display: block;">
  569. <h1><img src="{hitskin_preview.PATH_IMG_FA}hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
  570. <div class="content">
  571. <p>
  572. {hitskin_preview.L_THEME_SITE_PREVIEW}
  573. <br />
  574. <span>{hitskin_preview.U_INSTALL_THEME}<a href="https://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
  575. </p>
  576.  
  577. </div>
  578. </div>
  579. <!-- END hitskin_preview -->
  580.  
  581. <!-- BEGIN switch_login_popup -->
  582. <div id="login_popup" style="z-index: 10000 !important;">
  583. <div class="h3">{SITENAME}</div>
  584. <div id="login_popup_message">
  585. {LOGIN_POPUP_MSG}
  586. </div>
  587. <div id="login_popup_buttons">
  588. <form action="{S_LOGIN_ACTION}" method="get">
  589. <input type="submit" class="button1" value="{L_LOGIN}" />
  590. <input type="button" class="button1" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
  591. <input id="login_popup_close" type="button" class="button2" value="{L_DONT_DISPLAY_AGAIN}" />
  592. </form>
  593. </div>
  594. </div>
  595. <!-- END switch_login_popup -->
  596.  
  597. <a id="top" name="top" accesskey="t"></a>
  598. {JAVASCRIPT}
  599.  
  600. <div id="page-header">
  601. <div class="headerbar">
  602. <script>
  603. (function($) {
  604.  
  605. $.fn.menumaker = function(options) {
  606.  
  607. var cssmenu = $(this), settings = $.extend({
  608. title: "Menu",
  609. format: "dropdown",
  610. breakpoint: 768,
  611. sticky: false
  612. }, options);
  613.  
  614. return this.each(function() {
  615. cssmenu.find('li ul').parent().addClass('has-sub');
  616. if (settings.format != 'select') {
  617. cssmenu.prepend('<div id="menu-button">' + settings.title + '</div>');
  618. $(this).find("#menu-button").on('click', function(){
  619. $(this).toggleClass('menu-opened');
  620. var mainmenu = $(this).next('ul');
  621. if (mainmenu.hasClass('open')) {
  622. mainmenu.hide().removeClass('open');
  623. }
  624. else {
  625. mainmenu.show().addClass('open');
  626. if (settings.format === "dropdown") {
  627. mainmenu.find('ul').show();
  628. }
  629. }
  630. });
  631.  
  632. multiTg = function() {
  633. cssmenu.find(".has-sub").prepend('<span class="submenu-button"></span>');
  634. cssmenu.find('.submenu-button').on('click', function() {
  635. $(this).toggleClass('submenu-opened');
  636. if ($(this).siblings('ul').hasClass('open')) {
  637. $(this).siblings('ul').removeClass('open').hide();
  638. }
  639. else {
  640. $(this).siblings('ul').addClass('open').show();
  641. }
  642. });
  643. };
  644.  
  645. if (settings.format === 'multitoggle') multiTg();
  646. else cssmenu.addClass('dropdown');
  647. }
  648.  
  649. else if (settings.format === 'select')
  650. {
  651. cssmenu.append('<select style="width: 100%"/>').addClass('select-list');
  652. var selectList = cssmenu.find('select');
  653. selectList.append('<option>' + settings.title + '</option>', {
  654. "selected": "selected",
  655. "value": ""});
  656. cssmenu.find('a').each(function() {
  657. var element = $(this), indentation = "";
  658. for (i = 1; i < element.parents('ul').length; i++)
  659. {
  660. indentation += '-';
  661. }
  662. selectList.append('<option value="' + $(this).attr('href') + '">' + indentation + element.text() + '</option');
  663. });
  664. selectList.on('change', function() {
  665. window.location = $(this).find("option:selected").val();
  666. });
  667. }
  668. if (settings.sticky === true) cssmenu.css('position', 'fixed');
  669. resizeFix = function() {
  670. if ($(window).width() > settings.breakpoint) {
  671. cssmenu.find('ul').show();
  672. cssmenu.removeClass('small-screen');
  673. if (settings.format === 'select') {
  674. cssmenu.find('select').hide();
  675. }
  676. else {
  677. cssmenu.find("#menu-button").removeClass("menu-opened");
  678. }
  679. }
  680.  
  681. if ($(window).width() <= settings.breakpoint && !cssmenu.hasClass("small-screen")) {
  682. cssmenu.find('ul').hide().removeClass('open');
  683. cssmenu.addClass('small-screen');
  684. if (settings.format === 'select') {
  685. cssmenu.find('select').show();
  686. }
  687. }
  688. };
  689. resizeFix();
  690. return $(window).on('resize', resizeFix);
  691.  
  692. });
  693. };
  694. })(jQuery);
  695.  
  696. (function($){
  697. $(document).ready(function(){
  698.  
  699. $(document).ready(function() {
  700. $("#cssmenu").menumaker({
  701. title: "",
  702. format: "dropdown"
  703. });
  704.  
  705. $("#cssmenu a").each(function() {
  706. var linkTitle = $(this).text();
  707. $(this).attr('data-title', linkTitle);
  708. });
  709. });
  710.  
  711. });
  712. })(jQuery);
  713.  
  714. </script>
  715. <div id="headerbar-top">
  716. <div class="wrap">
  717. <a href="{U_INDEX}" id="logo"><img src="{LOGO}" alt="{L_INDEX}" /></a>
  718.  
  719. </div>
  720. </div>
  721.  
  722. <div class="wrap">
  723. <div id="site-desc">
  724. <!-- BEGIN switch_h1 -->
  725. <div id="site-title">{switch_h1.MAIN_SITENAME}</div>
  726. <!-- END switch_h1 -->
  727. <!-- BEGIN switch_desc -->
  728. <p>{switch_desc.SITE_DESCRIPTION}</p>
  729. <!-- END switch_desc -->
  730. </div>
  731. </div>
  732. </div>
  733.  
  734. <!-- BEGIN switch_ticker_new -->
  735. <div id="fa_ticker_blockD" style="margin-top:4px;">
  736. <div class="module">
  737. <div class="inner">
  738. <div id="fa_ticker_container">
  739. <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display:none">
  740. <!-- BEGIN ticker_row -->
  741. <li>{switch_ticker.ticker_row.ELEMENT}</li>
  742. <!-- END ticker_row -->
  743. </ul>
  744. </div>
  745. </div>
  746. </div>
  747. </div>
  748. <!-- END switch_ticker_new -->
  749. </div>
  750.  
  751. <div class="conteneur_minwidth_IE">
  752. <div class="conteneur_layout_IE">
  753. <div class="conteneur_container_IE">
  754. <div id="wrap">
  755. <div id="page-body">
  756.  
  757. <!-- BEGIN switch_ticker -->
  758. <div id="fa_ticker_block" style="margin-top:4px;">
  759. <div class="module">
  760. <div class="inner">
  761. <div id="fa_ticker_container">
  762. <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
  763. <div class="fa_ticker_content">
  764. <!-- BEGIN ticker_row -->
  765. <div>{switch_ticker.ticker_row.ELEMENT}</div>
  766. <!-- END ticker_row -->
  767. </div>
  768. </div>
  769. </div>
  770. </div>
  771. </div>
  772. </div>
  773. <!-- END switch_ticker -->
  774.  
  775. <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
  776. <div id="outer-wrapper">
  777. <div id="wrapper">
  778. <div id="{ID_LEFT}">
  779. <!-- BEGIN giefmod_index1 -->
  780. {giefmod_index1.MODVAR}
  781. <!-- BEGIN saut -->
  782. <div style="height:{SPACE_ROW}px"></div>
  783. <!-- END saut -->
  784. <!-- END giefmod_index1 -->
  785. </div>
  786.  
  787. <div id="container">
  788. <div id="content-main">
  789. <div id="main">
  790. <div id="main-content">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement