| 123456789101112131415161718192021222324 |
- {% load static %}
- <!DOCTYPE html>
- <html lang="zh-cn">
- <head>
- <meta charset="utf-8">
- <title>
- {% block title %}
- {% endblock %}
- </title>
- <link rel="stylesheet" href="{% static 'bootstrap/css/bootstrap.min.css' %}">
- <link rel="stylesheet" href="{% static 'md_css/monokai.css' %}">
- </head>
- <body>
- {% include "header.html" %}
- {% block content %}
- {% endblock %}
- {% include "footer.html" %}
- <script src="{% static 'jQuery/jquery-3.5.1.js' %}"></script>
- <script src="{% static 'layer/layer.js' %}"></script>
- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1-lts/dist/umd/popper.min.js"></script>
- <script src="{% static 'bootstrap/js/bootstrap.min.js' %}"></script>
- </body>
- </html>
|