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.

base.html 1.6 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>{{ title }}</title>
  7. <meta name="generator" content="wnframework">
  8. <script type="text/javascript" src="/assets/webnotes/js/lib/jquery/jquery.min.js"></script>
  9. <link rel="shortcut icon" href="{{ favicon | scrub_relative_url }}" type="image/x-icon">
  10. <link rel="icon" href="{{ favicon | scrub_relative_url }}" type="image/x-icon">
  11. {%- block head -%}
  12. {%- if meta_description -%}
  13. <meta name="description" content="{{ meta_description }}">
  14. {%- endif -%}
  15. {%- for link in web_include_js -%}
  16. <script type="text/javascript" src="/{{ link }}"></script>
  17. {%- endfor -%}
  18. {%- for link in web_include_css -%}
  19. <link type="text/css" rel="stylesheet" href="/{{ link }}">
  20. {%- endfor -%}
  21. {%- endblock -%}
  22. {%- block javascript -%}
  23. {%- if javascript -%}
  24. <script>{{ javascript }}</script>
  25. {%- endif -%}
  26. {%- endblock -%}
  27. {%- block css -%}
  28. {%- if css -%}
  29. <style>{{ css }}</style>
  30. {%- endif -%}
  31. {%- endblock -%}
  32. {%- block style -%}{%- endblock -%}
  33. </head>
  34. <body>
  35. {%- block banner -%}
  36. {% if banner_html -%}
  37. <header class="container">{{ banner_html or "" }}</header>
  38. {%- endif %}
  39. {%- endblock -%}
  40. {%- block navbar -%}{% include "templates/includes/navbar.html" %}{%- endblock -%}
  41. <div class="page-container" id="page-{{ name or page_name }}">
  42. {%- block content -%}{{ content }}{%- endblock -%}
  43. </div>
  44. {%- block footer -%}{% include "templates/includes/footer.html" %}{%- endblock -%}
  45. </body>
  46. </html>