Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. {% if j3 is not defined %}
  2. <style>
  3. body {
  4. display: none !important;
  5. }
  6. </style>
  7. <script>
  8. window.location = 'index.php?route=journal3/startup/error';
  9. </script>
  10. {% endif %}
  11. {{ j3.loadController('journal3/layout', 'bottom') }}
  12.  
  13. {% if not j3.document.isPopup() %}
  14.  
  15. <footer>
  16. {{ footer_menu }}
  17. </footer>
  18.  
  19. {% endif %}
  20. </div><!-- .site-wrapper -->
  21.  
  22. {{ j3.loadController('journal3/layout', 'bottom_menu') }}
  23.  
  24. {{ j3.loadController('journal3/layout', 'side_menu') }}
  25.  
  26. {{ j3.loadController('journal3/layout', 'notification') }}
  27.  
  28. {% for script in j3.document.getScripts('footer') %}
  29. <script src="{{ j3.document.staticUrl(script, false) }}" {% if j3.settings.get('performanceJSDefer') %} defer {% endif %}></script>
  30. {% endfor %}
  31.  
  32. {% if j3.canLiveReload() %}
  33. <script src="http://{{ j3.getHost() }}:35729/livereload.js?snipver=1" async></script>
  34. {% endif %}
  35.  
  36. {% if j3.settings.get('customJS') %}
  37. <script type="text/javascript">{{ j3.settings.get('customJS') }}</script>
  38. {% endif %}
  39.  
  40. {% if not j3.document.isPopup() and j3.settings.get('customCodeFooter') %}
  41. {{ j3.settings.get('customCodeFooter') }}
  42. {% endif %}
  43.  
  44. {% if not j3.document.isPopup() and j3.settings.get('scrollTop') %}
  45. <div class="scroll-top">
  46. <i class="fa fa-angle-up"></i>
  47. </div>
  48. {% endif %}
  49.  
  50. {% if j3.document.hasFonts() and j3.settings.get('performanceAsyncFontsStatus') %}
  51. <script>
  52. (function () {
  53. var wf = document.createElement('script');
  54. wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js';
  55. wf.type = 'text/javascript';
  56. wf.async = 'true';
  57. var s = document.getElementsByTagName('script')[0];
  58. s.parentNode.insertBefore(wf, s);
  59. })();
  60. </script>
  61. {% endif %}
  62.  
  63. </body>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement