Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>{% block title %}SWE-bench Practice{% endblock %}</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> | |
| </head> | |
| <body class="bg-gray-950 text-gray-100 min-h-screen"> | |
| <nav class="bg-gray-900 border-b border-gray-800 px-6 py-3 flex items-center justify-between"> | |
| <a href="/" class="text-lg font-bold text-blue-400">SWE-bench Verified Practice</a> | |
| <span class="text-sm text-gray-500">AI Agent Trajectory Analysis</span> | |
| </nav> | |
| <main class="max-w-7xl mx-auto px-4 py-8"> | |
| {% block content %}{% endblock %} | |
| </main> | |
| <script src="{{ url_for('static', filename='app.js') }}"></script> | |
| {% block scripts %}{% endblock %} | |
| </body> | |
| </html> | |