更新 'src/DjangoBlog-master/templates/share_layout/base_account.html'

fz_branch
pa2g3nmk9 4 months ago
parent f820d39ab1
commit 4aa2db54e3

@ -1,47 +1,47 @@
<!DOCTYPE html>
<html>
<head>
{% load static %}
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<meta name="robots" content="noindex">
<title>{{ SITE_NAME }} | {{ SITE_DESCRIPTION }}</title>
<link href="{% static 'account/css/account.css' %}" rel="stylesheet">
{% load compress %}
{% compress css %}
<!-- Bootstrap core CSS -->
{% load static %} {# 加载静态文件标签 #}
<meta charset="utf-8"> {# 字符编码 #}
<meta http-equiv="X-UA-Compatible" content="IE=edge"> {# IE浏览器兼容模式 #}
<meta name="viewport" content="width=device-width, initial-scale=1"> {# 响应式视口设置 #}
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> {# 必须放在头部的三个meta标签 #}
<meta name="description" content=""> {# 页面描述 #}
<meta name="author" content=""> {# 页面作者 #}
<link rel="icon" href="../../favicon.ico"> {# 网站图标 #}
<meta name="robots" content="noindex"> {# 禁止搜索引擎索引 #}
<title>{{ SITE_NAME }} | {{ SITE_DESCRIPTION }}</title> {# 页面标题 #}
<link href="{% static 'account/css/account.css' %}" rel="stylesheet"> {# 账户页面样式表 #}
{% load compress %} {# 加载压缩标签 #}
{% compress css %} {# CSS压缩块 #}
<!-- Bootstrap core CSS --> {# Bootstrap核心样式 #}
<link href="{% static 'assets/css/bootstrap.min.css' %}" rel="stylesheet">
<link href="{% static 'blog/css/oauth_style.css' %}" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="{% static 'blog/css/oauth_style.css' %}" rel="stylesheet"> {# OAuth样式表 #}
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> {# IE10视口修复 #}
<link href="{% static 'assets/css/ie10-viewport-bug-workaround.css' %}" rel="stylesheet">
<!-- TODC Bootstrap core CSS -->
<!-- TODC Bootstrap core CSS --> {# TODC Bootstrap样式 #}
<link href="{% static 'assets/css/todc-bootstrap.min.css' %}" rel="stylesheet">
<!-- Custom styles for this template -->
<!-- Custom styles for this template --> {# 自定义样式 #}
<link href="{% static 'assets/css/signin.css' %}" rel="stylesheet">
{% endcompress %}
{% compress js %}
<script src="{% static 'assets/js/ie10-viewport-bug-workaround.js' %}"></script>
<script src="{% static 'assets/js/ie-emulation-modes-warning.js' %}"></script>
{% compress js %} {# JavaScript压缩块 #}
<script src="{% static 'assets/js/ie10-viewport-bug-workaround.js' %}"></script> {# IE10视口修复脚本 #}
<script src="{% static 'assets/js/ie-emulation-modes-warning.js' %}"></script> {# IE模拟模式警告脚本 #}
{% endcompress %}
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> {# HTML5兼容性支持 #}
<!--[if lt IE 9]> {# IE9以下浏览器条件注释 #}
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> {# HTML5标签支持 #}
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> {# 媒体查询支持 #}
<![endif]-->
</head>
<body>
{% block content %}
{% block content %} {# 主要内容块 #}
{% endblock %}
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> {# IE10视口修复注释 #}
</body>
<script type="text/javascript" src="{% static 'blog/js/jquery-3.6.0.min.js' %}"></script>
<script src="{% static 'account/js/account.js' %}" type="text/javascript"></script>
<script type="text/javascript" src="{% static 'blog/js/jquery-3.6.0.min.js' %}"></script> {# jQuery库 #}
<script src="{% static 'account/js/account.js' %}" type="text/javascript"></script> {# 账户页面脚本 #}
</html>
Loading…
Cancel
Save