| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {% 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' %}">
- <link
- rel="stylesheet"
- href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.14.0/css/all.min.css"
- >
- </head>
- <body>
- {% include "header.html" %}
- <div id="wrapper">
- {% block content %}
- {% endblock content%}
- <div id="push"></div>
- </div>
- {% 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>
- {% include 'back_to_top_func.html' %}
- {% block script %}
- {% endblock script %}
- <style>
- html, body {
- height: 100%;
- margin: 0;
- }
- #wrapper {
- min-height: 100%;
- margin-bottom: -60px;
- }
- #footer, #push {
- height: 60px;
- }
- </style>
- </body>
- </html>
|