Advertisement
Guest User

Untitled

a guest
Apr 9th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.76 KB | None | 0 0
  1. <script type="text/javascript">
  2. jQuery(function($) {
  3. $("#backtop").hide();
  4. $(window).scroll(function () {
  5. if ($(this).scrollTop() > 400) {
  6. $("#backtop").fadeIn(160);
  7. } else {
  8. $("#backtop").fadeOut(160);
  9. }
  10. });
  11. $('.backtop').on( "click", function () {
  12. $('html, body').animate({
  13. scrollTop: 0
  14. }, 650);
  15. return false;
  16. });
  17. });
  18. </script>
  19. <debugstuff>
  20. </div>
  21. </div>
  22. <a class="backtop"><span id='backtop'><i class="fa fa-angle-up arr-adj"></i></span></a>
  23. <div id="footer">
  24. <div class="uppermid">
  25. <div class="wrapper">
  26. <div class="ft-row">
  27. <div class="ft-col-1">
  28. <h2>About Us</h2>
  29. <span>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
  30. At vero eos et accusam et justo duo dolores et ea rebum.</span><br />
  31. <br />
  32. <div id="social">
  33. <a href="https://facebook.com/" title="Facebook"><span class="sicon fb"><i class="fa fa-facebook"></i></span></a>
  34. <a href="https://linkedin.com/" title="LinkedIn"><span class="sicon ln"><i class="fa fa-linkedin"></i></span></a>
  35. <a href="https://google.com/" title="Google+"><span class="sicon gp"><i class="fa fa-google"></i></span></a>
  36. <a href="https://twitter.com/" title="Twitter"><span class="sicon tw"><i class="fa fa-twitter"></i></span></a>
  37. <a href="https://rss.com/" title="RSS"><span class="sicon rs"><i class="fa fa-rss"></i></span></a>
  38. </div>
  39. </div> <!-- end: ft-col-1 -->
  40. <div class="ft-col-3">
  41. <div class="ft-col-item">
  42. <div class="ft-col-item-icon"><i class="fa fa-map-marker" aria-hidden="true"></i></div>
  43. <div class="ft-col-item-title">
  44. Cedar Avenue
  45. <br />
  46. Los Angeles, USA
  47. </div>
  48. </div>
  49. <div class="ft-col-item">
  50. <div class="ft-col-item-icon"><i class="fa fa-phone" aria-hidden="true"></i></div>
  51. <div class="ft-col-item-title">
  52. +0 123 456789
  53. </div>
  54. </div>
  55. <div class="ft-col-item">
  56. <div class="ft-col-item-icon"><i class="fa fa-question" aria-hidden="true"></i></div>
  57. <div class="ft-col-item-title">
  58. support@company.com
  59. </div>
  60. </div>
  61. </div> <!-- end: ft-col-3 -->
  62. <div class="ft-col-2">
  63. <div class="ft-head">Social</div>
  64. <ul class="ft-menu">
  65. <li><a href="#">Facebook</a></li>
  66. <li><a href="#">Twitter</a></li>
  67. <li><a href="#">Google+</a></li>
  68. <li><a href="#">LinkedIn</a></li>
  69. <li><a href="#">Pinterest</a></li>
  70. </ul>
  71. </div> <!-- end: ft-col-2 -->
  72. <div class="ft-col-2">
  73. <div class="ft-head">Navigation</div>
  74. <ul class="ft-menu">
  75. <li><a href="{$mybb->settings['bburl']}">Forums</a></li>
  76. <li><a href="{$mybb->settings['bburl']}/portal.php">{$lang->toplinks_portal}</a></li>
  77. <li><a href="{$mybb->settings['bburl']}/search.php">{$lang->toplinks_search}</a></li>
  78. <li><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></li>
  79. <li><a href="{$mybb->settings['bburl']}/showteam.php">Show Team</a></li>
  80. </ul>
  81. </div> <!-- end: ft-col-2 -->
  82. <div class="ft-col-2">
  83. <div class="ft-head">Social</div>
  84. <ul class="ft-menu">
  85. <li><a href="#">Facebook</a></li>
  86. <li><a href="#">Twitter</a></li>
  87. <li><a href="#">Google+</a></li>
  88. <li><a href="#">LinkedIn</a></li>
  89. <li><a href="#">Pinterest</a></li>
  90. </ul>
  91. </div> <!-- end: ft-col-2 -->
  92. </div> <!-- end: ft-row -->
  93. </div> <!-- end: wrapper -->
  94. </div> <!-- end: uppermid -->
  95. <div class="lower">
  96. <div class="wrapper">
  97. <span id="copyright">
  98. <!-- MyBB is free software developed and maintained by a volunteer community.
  99. It would be much appreciated by the MyBB Group if you left the full copyright and "powered by" notice intact,
  100. to show your support for MyBB. If you choose to remove or modify the copyright below,
  101. you may be refused support on the MyBB Community Forums.
  102.  
  103. This is free software, support us and we'll support you. -->
  104. <span class="float_left">Powered by <a href="http://www.mybb.com" target="_blank" rel="noopener">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a href="http://www.mybb.com" target="_blank" rel="noopener">MyBB Group</a>.</span>
  105. <span class="float_right">Theme designed {$lang->by} <a href="http://community.mybb.com/user-102346.html" target="_blank" rel="noopener">Rōshi</a> &copy; 2015-{$copy_year}.</span>
  106. <!-- End powered by -->
  107. </span>
  108. </div>
  109. </div>
  110. </div>
  111. <!-- The following piece of code allows MyBB to run scheduled tasks. DO NOT REMOVE -->{$task_image}<!-- End task image code -->
  112. {$auto_dst_detection}
  113. </div>{$mentionAutocomplete}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement