xiaoyukkkk commited on
Commit
a9dc7d7
·
verified ·
1 Parent(s): 77f05e1

Upload base.html

Browse files
Files changed (1) hide show
  1. templates/base.html +20 -0
templates/base.html CHANGED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="zh-CN">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>{% block title %}Gemini Business API{% endblock %}</title>
7
+
8
+ <!-- 页面特定样式 -->
9
+ {% block extra_css %}{% endblock %}
10
+ </head>
11
+ <body>
12
+ {% block content %}{% endblock %}
13
+
14
+ <!-- 共享脚本 -->
15
+ <script src="/static/js/api.js"></script>
16
+
17
+ <!-- 页面特定脚本 -->
18
+ {% block extra_js %}{% endblock %}
19
+ </body>
20
+ </html>