Guest User

Untitled

a guest
Oct 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!-- meta -->
  5. <meta charset="UTF-8">
  6. <title>{% block title %}{% endblock %}</title>
  7. {% block head %}{% endblock %}
  8.  
  9. <!-- jQuery is first -->
  10. <script src="/static/js/jquery-1.7.2.min.js" type="text/javascript"></script>
  11.  
  12. <!-- styles -->
  13. {% block css %}{% endblock %}
  14. <style type="text/less">{% block styles %}{% endblock %}</style>
  15.  
  16. <!-- scripts -->
  17. {% block js %}{% endblock %}
  18. <script type="text/javascript">
  19. $(document).ready(function (){
  20. {% block onload %}{% endblock %}
  21. });
  22. </script>
  23.  
  24. <!-- less is last -->
  25. <script src="/static/js/less-1.3.0.min.js" type="text/javascript"></script>
  26. </head>
  27.  
  28. <body>
  29. {% block body %}{% endblock %}
  30. </body>
  31.  
  32. </html>
Add Comment
Please, Sign In to add comment