Advertisement
Guest User

Untitled

a guest
Dec 19th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.94 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: 2000!important;
  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. /* Style The Dropdown Button */
  414. .dropbtn {
  415. padding: 17px;
  416. font-size: 12px;
  417. text-decoration: none;
  418. text-transform: uppercase;
  419. color: #000000;
  420. -webkit-transition: color .2s ease;
  421. -moz-transition: color .2s ease;
  422. -ms-transition: color .2s ease;
  423. -o-transition: color .2s ease;
  424. transition: color .2s ease;
  425. font-family: 'Open Sans', sans-serif;
  426. }
  427. .dropbtn:hover {
  428. color: #009ae1;
  429. background-color: transparent!important;
  430. }
  431.  
  432. /* The container <div> - needed to position the dropdown content */
  433. .dropdown {
  434. position: relative;
  435. display: inline-block;
  436. }
  437.  
  438. /* Dropdown Content (Hidden by Default) */
  439. .dropdown-content {
  440. display: none;
  441. position: absolute;
  442. background-color: #f9f9f9;
  443. min-width: 160px;
  444. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  445. z-index: 1;
  446. margin-left: 184px;
  447. }
  448.  
  449. /* Links inside the dropdown */
  450. .dropdown-content a {
  451. color: black;
  452. padding: 12px 16px;
  453. text-decoration: none;
  454. display: block;
  455. }
  456. /* Change color of dropdown links on hover */
  457. .dropdown-content a:hover {background-color: #f1f1f1}
  458.  
  459. /* Show the dropdown menu on hover */
  460. .dropdown:hover .dropdown-content {
  461. display: block;
  462. }
  463.  
  464. @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) {
  465. #cssmenu {
  466. width: 100%;
  467. }
  468. #cssmenu ul {
  469. width: 100%;
  470. display: none;
  471. }
  472. #cssmenu.align-center > ul,
  473. #cssmenu.align-right ul ul {
  474. text-align: left;
  475. }
  476. #cssmenu ul li,
  477. #cssmenu ul ul li,
  478. #cssmenu ul li:hover > ul > li {
  479. width: 100%;
  480. height: auto;
  481. border-top: 1px solid rgba(120, 120, 120, 0.15);
  482. }
  483. #cssmenu ul li a,
  484. #cssmenu ul ul li a {
  485. width: 100%;
  486. }
  487. #cssmenu > ul > li,
  488. #cssmenu.align-center > ul > li,
  489. #cssmenu.align-right > ul > li {
  490. float: none;
  491. display: block;
  492. }
  493. #cssmenu ul ul li a {
  494. padding: 20px 20px 20px 30px;
  495. font-size: 12px;
  496. color: #000000;
  497. background: none;
  498. }
  499. #cssmenu ul ul li:hover > a,
  500. #cssmenu ul ul li a:hover {
  501. color: #000000;
  502. }
  503. #cssmenu ul ul ul li a {
  504. padding-left: 40px;
  505. }
  506. #cssmenu ul ul,
  507. #cssmenu ul ul ul {
  508. position: relative;
  509. left: 0;
  510. right: auto;
  511. width: 100%;
  512. margin: 0;
  513. }
  514. #cssmenu > ul > li.has-sub > a::after,
  515. #cssmenu ul ul li.has-sub > a::after {
  516. display: none;
  517. }
  518. #menu-line {
  519. display: none;
  520. }
  521. #cssmenu #menu-button {
  522. display: block;
  523. padding: 20px;
  524. color: #000000;
  525. cursor: pointer;
  526. font-size: 12px;
  527. text-transform: uppercase;
  528. }
  529. #cssmenu #menu-button::after {
  530. content: '';
  531. position: absolute;
  532. top: 20px;
  533. right: 20px;
  534. display: block;
  535. width: 15px;
  536. height: 2px;
  537. background: #000000;
  538. }
  539. #cssmenu #menu-button::before {
  540. content: '';
  541. position: absolute;
  542. top: 25px;
  543. right: 20px;
  544. display: block;
  545. width: 15px;
  546. height: 3px;
  547. border-top: 2px solid #000000;
  548. border-bottom: 2px solid #000000;
  549. }
  550. #cssmenu .submenu-button {
  551. position: absolute;
  552. z-index: 10;
  553. right: 0;
  554. top: 0;
  555. display: block;
  556. border-left: 1px solid rgba(120, 120, 120, 0.15);
  557. height: 52px;
  558. width: 52px;
  559. cursor: pointer;
  560. }
  561. #cssmenu .submenu-button::after {
  562. content: '';
  563. position: absolute;
  564. top: 21px;
  565. left: 26px;
  566. display: block;
  567. width: 1px;
  568. height: 11px;
  569. background: #000000;
  570. z-index: 99;
  571. }
  572. #cssmenu .submenu-button::before {
  573. content: '';
  574. position: absolute;
  575. left: 21px;
  576. top: 26px;
  577. display: block;
  578. width: 11px;
  579. height: 1px;
  580. background: #000000;
  581. z-index: 99;
  582. }
  583. #cssmenu .submenu-button.submenu-opened:after {
  584. display: none;
  585. }
  586. }
  587.  
  588. </style>
  589. </link>
  590.  
  591. <body id="modernbb">
  592.  
  593.  
  594. <!-- BEGIN switch_user_logged_in -->
  595. <div id='cssmenu'>
  596. <ul>
  597. <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>
  598. <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>
  599. <button class="dropbtn">Ferramentas</button>
  600. <div class="dropdown-content">
  601. <a href="#">Grupos</a>
  602. <a href="#">Membros</a>
  603. <a href="#">Mensagens Privadas</a>
  604. </div>
  605. <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>
  606. <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>
  607. </ul>
  608. </div>
  609. <!-- END switch_user_logged_in -->
  610. <!-- BEGIN switch_user_logged_out -->
  611. <div id='cssmenu'>
  612. <ul>
  613. <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>
  614. <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>
  615. <li style="float: right;"><a href='/register'>Criar Conta</a></li>
  616. <li><a href='/login'>Entrar</a></li>
  617. </ul>
  618. </div>
  619.  
  620. <!-- END switch_user_logged_out -->
  621.  
  622. <!-- BEGIN hitskin_preview -->
  623. <div id="hitskin_preview" style="display: block;">
  624. <h1><img src="{hitskin_preview.PATH_IMG_FA}hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
  625. <div class="content">
  626. <p>
  627. {hitskin_preview.L_THEME_SITE_PREVIEW}
  628. <br />
  629. <span>{hitskin_preview.U_INSTALL_THEME}<a href="https://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
  630. </p>
  631.  
  632. </div>
  633. </div>
  634. <!-- END hitskin_preview -->
  635.  
  636. <!-- BEGIN switch_login_popup -->
  637. <div id="login_popup" style="z-index: 10000 !important;">
  638. <div class="h3">{SITENAME}</div>
  639. <div id="login_popup_message">
  640. {LOGIN_POPUP_MSG}
  641. </div>
  642. <div id="login_popup_buttons">
  643. <form action="{S_LOGIN_ACTION}" method="get">
  644. <input type="submit" class="button1" value="{L_LOGIN}" />
  645. <input type="button" class="button1" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
  646. <input id="login_popup_close" type="button" class="button2" value="{L_DONT_DISPLAY_AGAIN}" />
  647. </form>
  648. </div>
  649. </div>
  650. <!-- END switch_login_popup -->
  651.  
  652. <a id="top" name="top" accesskey="t"></a>
  653. {JAVASCRIPT}
  654.  
  655. <div id="page-header">
  656. <div class="headerbar">
  657. <script>
  658. (function($) {
  659.  
  660. $.fn.menumaker = function(options) {
  661.  
  662. var cssmenu = $(this), settings = $.extend({
  663. title: "Menu",
  664. format: "dropdown",
  665. breakpoint: 768,
  666. sticky: false
  667. }, options);
  668.  
  669. return this.each(function() {
  670. cssmenu.find('li ul').parent().addClass('has-sub');
  671. if (settings.format != 'select') {
  672. cssmenu.prepend('<div id="menu-button">' + settings.title + '</div>');
  673. $(this).find("#menu-button").on('click', function(){
  674. $(this).toggleClass('menu-opened');
  675. var mainmenu = $(this).next('ul');
  676. if (mainmenu.hasClass('open')) {
  677. mainmenu.hide().removeClass('open');
  678. }
  679. else {
  680. mainmenu.show().addClass('open');
  681. if (settings.format === "dropdown") {
  682. mainmenu.find('ul').show();
  683. }
  684. }
  685. });
  686.  
  687. multiTg = function() {
  688. cssmenu.find(".has-sub").prepend('<span class="submenu-button"></span>');
  689. cssmenu.find('.submenu-button').on('click', function() {
  690. $(this).toggleClass('submenu-opened');
  691. if ($(this).siblings('ul').hasClass('open')) {
  692. $(this).siblings('ul').removeClass('open').hide();
  693. }
  694. else {
  695. $(this).siblings('ul').addClass('open').show();
  696. }
  697. });
  698. };
  699.  
  700. if (settings.format === 'multitoggle') multiTg();
  701. else cssmenu.addClass('dropdown');
  702. }
  703.  
  704. else if (settings.format === 'select')
  705. {
  706. cssmenu.append('<select style="width: 100%"/>').addClass('select-list');
  707. var selectList = cssmenu.find('select');
  708. selectList.append('<option>' + settings.title + '</option>', {
  709. "selected": "selected",
  710. "value": ""});
  711. cssmenu.find('a').each(function() {
  712. var element = $(this), indentation = "";
  713. for (i = 1; i < element.parents('ul').length; i++)
  714. {
  715. indentation += '-';
  716. }
  717. selectList.append('<option value="' + $(this).attr('href') + '">' + indentation + element.text() + '</option');
  718. });
  719. selectList.on('change', function() {
  720. window.location = $(this).find("option:selected").val();
  721. });
  722. }
  723. if (settings.sticky === true) cssmenu.css('position', 'fixed');
  724. resizeFix = function() {
  725. if ($(window).width() > settings.breakpoint) {
  726. cssmenu.find('ul').show();
  727. cssmenu.removeClass('small-screen');
  728. if (settings.format === 'select') {
  729. cssmenu.find('select').hide();
  730. }
  731. else {
  732. cssmenu.find("#menu-button").removeClass("menu-opened");
  733. }
  734. }
  735.  
  736. if ($(window).width() <= settings.breakpoint && !cssmenu.hasClass("small-screen")) {
  737. cssmenu.find('ul').hide().removeClass('open');
  738. cssmenu.addClass('small-screen');
  739. if (settings.format === 'select') {
  740. cssmenu.find('select').show();
  741. }
  742. }
  743. };
  744. resizeFix();
  745. return $(window).on('resize', resizeFix);
  746.  
  747. });
  748. };
  749. })(jQuery);
  750.  
  751. (function($){
  752. $(document).ready(function(){
  753.  
  754. $(document).ready(function() {
  755. $("#cssmenu").menumaker({
  756. title: "",
  757. format: "dropdown"
  758. });
  759.  
  760. $("#cssmenu a").each(function() {
  761. var linkTitle = $(this).text();
  762. $(this).attr('data-title', linkTitle);
  763. });
  764. });
  765.  
  766. });
  767. })(jQuery);
  768.  
  769. </script>
  770. <div id="headerbar-top">
  771. <div class="wrap">
  772. <a href="{U_INDEX}" id="logo"><img src="{LOGO}" alt="{L_INDEX}" /></a>
  773.  
  774. </div>
  775. </div>
  776.  
  777. <div class="wrap">
  778. <div id="site-desc">
  779. <!-- BEGIN switch_h1 -->
  780. <div id="site-title">{switch_h1.MAIN_SITENAME}</div>
  781. <!-- END switch_h1 -->
  782. <!-- BEGIN switch_desc -->
  783. <p>{switch_desc.SITE_DESCRIPTION}</p>
  784. <!-- END switch_desc -->
  785. </div>
  786. </div>
  787. </div>
  788.  
  789. <!-- BEGIN switch_ticker_new -->
  790. <div id="fa_ticker_blockD" style="margin-top:4px;">
  791. <div class="module">
  792. <div class="inner">
  793. <div id="fa_ticker_container">
  794. <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display:none">
  795. <!-- BEGIN ticker_row -->
  796. <li>{switch_ticker.ticker_row.ELEMENT}</li>
  797. <!-- END ticker_row -->
  798. </ul>
  799. </div>
  800. </div>
  801. </div>
  802. </div>
  803. <!-- END switch_ticker_new -->
  804. </div>
  805.  
  806. <div class="conteneur_minwidth_IE">
  807. <div class="conteneur_layout_IE">
  808. <div class="conteneur_container_IE">
  809. <div id="wrap">
  810. <div id="page-body">
  811.  
  812. <!-- BEGIN switch_ticker -->
  813. <div id="fa_ticker_block" style="margin-top:4px;">
  814. <div class="module">
  815. <div class="inner">
  816. <div id="fa_ticker_container">
  817. <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
  818. <div class="fa_ticker_content">
  819. <!-- BEGIN ticker_row -->
  820. <div>{switch_ticker.ticker_row.ELEMENT}</div>
  821. <!-- END ticker_row -->
  822. </div>
  823. </div>
  824. </div>
  825. </div>
  826. </div>
  827. </div>
  828. <!-- END switch_ticker -->
  829.  
  830. <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
  831. <div id="outer-wrapper">
  832. <div id="wrapper">
  833. <div id="{ID_LEFT}">
  834. <!-- BEGIN giefmod_index1 -->
  835. {giefmod_index1.MODVAR}
  836. <!-- BEGIN saut -->
  837. <div style="height:{SPACE_ROW}px"></div>
  838. <!-- END saut -->
  839. <!-- END giefmod_index1 -->
  840. </div>
  841.  
  842. <div id="container">
  843. <div id="content-main">
  844. <div id="main">
  845. <div id="main-content">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement