-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbase.html
34 lines (31 loc) · 1.32 KB
/
base.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="https://static.pisearch.cn/logonew.min.svg">
<script src="https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-d/jquery/3.5.1/jquery.slim.min.js"></script>
<link href="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/bootstrap/5.1.0/css/bootstrap.min.css" type="text/css"
rel="stylesheet">
<link href="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-d/font-awesome/5.15.2/css/all.min.css" type="text/css"
rel="stylesheet">
<script src="https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/bootstrap/5.1.0/js/bootstrap.bundle.min.js"></script>
{% block head %}{% endblock %}
<title>{% block title %}{{ blog.name }}{% endblock %}</title>
{% block style %}{% endblock %}
<style>
.title-serif {
font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}
</style>
{% if has_pro_plan %}
<style>{{ blog.custom_css }}</style>
{% endif %}
</head>
<body>
{% include 'oierspace/blog/themes/pc/theme_classic/component/navbar.html' %}
{% block content %}{% endblock %}
{% include 'oierspace/blog/themes/pc/theme_classic/component/footer.html' %}
{% block script %}{% endblock %}
</body>
</html>