deepresearch/所有文件/base.html
2025-07-02 15:35:36 +08:00

26 lines
875 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}DeepResearch - 智能深度研究系统{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
{% block extra_css %}{% endblock %}
</head>
<body>
<div class="app">
<header class="header">
<h1>DeepResearch - 智能深度研究系统</h1>
{% block header_content %}{% endblock %}
</header>
<main class="main-container">
{% block content %}{% endblock %}
</main>
</div>
<script src="https://cdn.socket.io/4.5.4/socket.io.min.js"></script>
<script src="{{ url_for('static', filename='js/api.js') }}"></script>
{% block extra_js %}{% endblock %}
</body>
</html>