|
|
|
|
@ -5,30 +5,37 @@
|
|
|
|
|
<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 -->
|
|
|
|
|
<!-- 以上3个meta标签必须放在最前面,其他head内容必须放在这些标签之后 -->
|
|
|
|
|
<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>
|
|
|
|
|
<meta name="robots" content="noindex"> <!-- 禁止搜索引擎索引此页面 -->
|
|
|
|
|
<title>{{ SITE_NAME }} |{{ SITE_DESCRIPTION }}</title> <!-- 动态页面标题 -->
|
|
|
|
|
|
|
|
|
|
<!-- 账户相关CSS -->
|
|
|
|
|
<link href="{% static 'account/css/account.css' %}" rel="stylesheet">
|
|
|
|
|
|
|
|
|
|
{% load compress %}
|
|
|
|
|
{% compress css %}
|
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
|
|
|
<!-- Bootstrap核心CSS -->
|
|
|
|
|
<link href="{% static 'assets/css/bootstrap.min.css' %}" rel="stylesheet">
|
|
|
|
|
<!-- OAuth登录样式 -->
|
|
|
|
|
<link href="{% static 'blog/css/oauth_style.css' %}" rel="stylesheet">
|
|
|
|
|
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
|
|
|
|
|
<!-- IE10视口hack,修复Surface/桌面Windows 8的bug -->
|
|
|
|
|
<link href="{% static 'assets/css/ie10-viewport-bug-workaround.css' %}" rel="stylesheet">
|
|
|
|
|
<!-- TODC Bootstrap core CSS -->
|
|
|
|
|
<!-- TODC Bootstrap核心CSS (可能是定制版的Bootstrap) -->
|
|
|
|
|
<link href="{% static 'assets/css/todc-bootstrap.min.css' %}" rel="stylesheet">
|
|
|
|
|
<!-- Custom styles for this template -->
|
|
|
|
|
<!-- 此模板的自定义样式 -->
|
|
|
|
|
<link href="{% static 'assets/css/signin.css' %}" rel="stylesheet">
|
|
|
|
|
{% endcompress %}
|
|
|
|
|
|
|
|
|
|
{% compress js %}
|
|
|
|
|
<!-- IE10兼容性脚本 -->
|
|
|
|
|
<script src="{% static 'assets/js/ie10-viewport-bug-workaround.js' %}"></script>
|
|
|
|
|
<script src="{% static 'assets/js/ie-emulation-modes-warning.js' %}"></script>
|
|
|
|
|
{% endcompress %}
|
|
|
|
|
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
|
|
|
|
|
|
|
|
<!-- HTML5 shim 和 Respond.js 用于IE8支持HTML5元素和媒体查询 -->
|
|
|
|
|
<!--[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>
|
|
|
|
|
@ -36,12 +43,14 @@
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
|
|
|
|
|
<!-- 主要内容块,由子模板填充 -->
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
<!-- IE10视口hack for Surface/桌面Windows 8 bug -->
|
|
|
|
|
</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>
|
|
|
|
|
|
|
|
|
|
<!-- JavaScript文件 -->
|
|
|
|
|
<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> <!-- 账户相关JavaScript -->
|
|
|
|
|
</html>
|