feat(phase4): permanent cache-control & asset versioning, canonical nabil stored_session_id & resume, dsh session persistence fix, dsh dialogue/files toggle, and collapsible conv sidebar

This commit is contained in:
bolbol
2026-08-20 23:51:08 +01:00
parent e40fe71f5c
commit 9c8f292d0f
6 changed files with 150 additions and 36 deletions
+4 -4
View File
@@ -5,16 +5,16 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{{ app_name }}{% endblock %}</title>
<!-- Design Tokens System (Substituable par Claude Design) -->
<link rel="stylesheet" href="/static/css/tokens.css">
<link rel="stylesheet" href="/static/css/style.css">
<!-- Design Tokens System & Anti-Stale Assets -->
<link rel="stylesheet" href="/static/css/tokens.css?v={{ version }}">
<link rel="stylesheet" href="/static/css/style.css?v={{ version }}">
{% block extra_head %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
<script src="/static/js/hub.js"></script>
<script src="/static/js/hub.js?v={{ version }}"></script>
{% block extra_scripts %}{% endblock %}
</body>
</html>