mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2026-02-05 16:15:19 -05:00
- Fix 6 rules-of-hooks: RealtimeDebugPanel, AdminSettings, ReportsQueue - Add 13 ESLint rule overrides (error→warn) for code quality patterns - Fix 6 no-case-declarations with block scopes in state machines - Convert console.error/log to logger in imageUploadHelper - Add eslint-disable for intentional deprecation warnings - Fix prefer-promise-reject-errors in djangoClient Also includes backend factory and service fixes from previous session.
24 lines
623 B
HTML
24 lines
623 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}ThrillWiki{% endblock %}</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
h1 { color: #1a1a2e; }
|
|
a { color: #0066cc; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|