Blame view
templates/base.html
907 Bytes
| 
f96567709
 
 | 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25  | 
  {% load static %}
  <!DOCTYPE html>
  <html>
      <head>
          <meta charset="utf-8">
          <meta http-equiv="X-UA-Compatible" content="IE=edge">
          <title>{% block title %}小程序平台{% endblock %}</title>
          <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
          {% block css %}
          {% endblock %}
          <link rel="stylesheet" href="{% static 'css/base.css' %}">
          <script src="{% static "plugins/jQuery/jQuery-2.1.4.min.js" %}"></script>
      </head>
      <body class="hold-transition skin-blue sidebar-mini">
          <div class="wrapper">
              {% include "base_header.html" %}
              {% include "base_sidebar.html" %}
              {% block content %}
              {% endblock %}
              {% include "base_footer.html" %}
              {% block js %}
              {% endblock %}
          </div>
      </body>
  </html>
 |