Starting implementation of user made custom CSS templates
This commit is contained in:
15
templates/overlay-custom.html
Normal file
15
templates/overlay-custom.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Custom Chat Overlay</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', path='css/overlay-base.css') }}">
|
||||
<link rel="stylesheet" href="/css/custom/{{ theme_id }}">
|
||||
</head>
|
||||
<body>
|
||||
<div class="chat-container">
|
||||
<!-- Chat messages will be injected here by the WebSocket client -->
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user