base.html
907 Bytes
{% 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>