No Description
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_backend.html 381B

123456789101112131415
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>{% block title %}{% endblock %}</title>
  6. {% block style %}{% endblock %}
  7. {% block scripts %}{% endblock %}
  8. </head>
  9. <body>
  10. <div id="content">
  11. {% block content %}{% endblock %}
  12. </div>
  13. <script type="text/javascript">{% block javascript %}{% endblock %}</script>
  14. </body>
  15. </html>