You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <head>
  3. <meta charset="utf-8">
  4. <title>Application</title>
  5. <meta name="author" content="">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
  8. <link rel="icon" href="images/favicon.ico" type="image/x-icon">
  9. </head>
  10. <body>
  11. <div class="splash">{% include "public/images/frappe.svg" %}</div>
  12. <header></header>
  13. <div id="body_div">
  14. </div>
  15. <footer></footer>
  16. {% for include in include_css -%}
  17. <link type="text/css" rel="stylesheet" href="{{ include }}">
  18. {%- endfor -%}
  19. <script type="text/javascript" src="/assets/webnotes/js/lib/jquery/jquery.min.js"></script>
  20. <script type="text/javascript">
  21. window._version_number = "{{ build_version }}";
  22. // browser support
  23. window.app = true;
  24. </script>
  25. {% for include in include_js -%}
  26. <script type="text/javascript" src="{{ include }}"></script>
  27. {%- endfor -%}
  28. </body>