Skip to content

Commit 7129176

Browse files
WIP
1 parent 91ef3ed commit 7129176

4 files changed

Lines changed: 119 additions & 413 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ where = ["src"]
77
include = ["blockether_catalyst*"]
88

99
[tool.setuptools.package-data]
10-
"blockether_catalyst" = ["assets/static_models/**/*", "assets/knowledge/**/**.j2", "assets/integrations/**/**"]
10+
"blockether_catalyst" = ["assets/static_models/**/*", "assets/knowledge/**/*.j2", "integrations/**/*.j2"]
1111

1212
[project]
1313
name = "blockether-catalyst"
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>{% block title %}{{ module_title | default('Chat Interface') }}{% endblock %}</title>
7+
8+
<!-- Tailwind CSS -->
9+
<script src="https://cdn.tailwindcss.com"></script>
10+
11+
<!-- Custom scrollbar styles -->
12+
<style>
13+
.custom-scrollbar::-webkit-scrollbar {
14+
width: 6px;
15+
}
16+
.custom-scrollbar::-webkit-scrollbar-track {
17+
background: #f1f1f1;
18+
border-radius: 10px;
19+
}
20+
.custom-scrollbar::-webkit-scrollbar-thumb {
21+
background: #c1c1c1;
22+
border-radius: 10px;
23+
}
24+
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
25+
background: #a8a8a8;
26+
}
27+
28+
/* Firefox scrollbar styling */
29+
.custom-scrollbar {
30+
scrollbar-width: thin;
31+
scrollbar-color: #c1c1c1 #f1f1f1;
32+
}
33+
</style>
34+
35+
{% block head_scripts %}{% endblock %}
36+
</head>
37+
<body class="bg-gray-50">
38+
{% block styles %}{% endblock %}
39+
40+
{% block content %}
41+
<div class="container mx-auto p-4">
42+
<h1 class="text-2xl font-bold mb-4">{{ module_title | default('Welcome') }}</h1>
43+
<p>This is the base template content.</p>
44+
</div>
45+
{% endblock %}
46+
47+
{% block scripts %}{% endblock %}
48+
</body>
49+
</html>

0 commit comments

Comments
 (0)