Spaces:
No application file
No application file
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>MTEB Leaderboard - Error</title> | |
| <!-- Semi Design CSS --> | |
| <link rel="stylesheet" href="https://unpkg.com/@douyinfe/semi-ui/dist/css/semi.min.css"> | |
| <!-- Custom CSS --> | |
| <link rel="stylesheet" href="{{ url_for('static', path='css/style.css') }}"> | |
| <style> | |
| .error-container { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| min-height: 100vh; | |
| text-align: center; | |
| padding: 20px; | |
| } | |
| .error-icon { | |
| font-size: 48px; | |
| color: #e74c3c; | |
| margin: 20px 0; | |
| } | |
| .error-message { | |
| font-size: 1.2em; | |
| margin: 10px 0; | |
| color: #666; | |
| } | |
| .retry-button { | |
| margin-top: 20px; | |
| padding: 10px 20px; | |
| background-color: #3498db; | |
| color: white; | |
| border: none; | |
| border-radius: 4px; | |
| cursor: pointer; | |
| text-decoration: none; | |
| } | |
| .retry-button:hover { | |
| background-color: #2980b9; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="error-container"> | |
| <h1>MTEB Leaderboard</h1> | |
| <div class="error-icon">⚠️</div> | |
| <h2>An Error Occurred</h2> | |
| <p class="error-message">{{ error }}</p> | |
| <a href="/" class="retry-button">Retry</a> | |
| </div> | |
| </body> | |
| </html> | |