ofermend commited on
Commit
97ca42e
·
1 Parent(s): dde1ed4

redirect try 2

Browse files
Files changed (1) hide show
  1. index.html +15 -36
index.html CHANGED
@@ -1,39 +1,18 @@
1
  <!DOCTYPE html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>Vectara's Hallucination Evaluation Model Leaderboard</title>
7
- <link rel="stylesheet" href="style.css" />
8
- <style>
9
- /* Style the table */
10
- table {
11
- border-collapse: collapse;
12
- }
13
- /* Style the table cells */
14
- th, td {
15
- border: 1px solid black;
16
- padding: 8px;
17
- text-align: left;
18
- }
19
- </style>
20
- <script src="https://cdn.jsdelivr.net/npm/showdown/dist/showdown.min.js"></script>
21
- </head>
22
- <body>
23
- <div>
24
- <p>This leaderboard will soon be deprecated. Please check our new dynamic leaderboard
25
- <a href="https://huggingface.co/spaces/vectara/leaderboard" target="_blank">here</a>.
26
- </p>
27
- </div>
28
- <div id="content"></div>
29
- <script>
30
- fetch('https://raw.githubusercontent.com/vectara/hallucination-leaderboard/main/README.md')
31
- .then(response => response.text())
32
- .then(text => {
33
- var converter = new showdown.Converter({tables: true});
34
- var html = converter.makeHtml(text);
35
- document.getElementById('content').innerHTML = html;
36
- });
37
- </script>
38
- </body>
39
  </html>
 
1
  <!DOCTYPE html>
2
  <html>
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <title>Redirecting…</title>
6
+
7
+ <!-- Works even if JS is disabled -->
8
+ <meta http-equiv="refresh" content="0;url=https://vectara-leaderboard.hf.space" />
9
+ </head>
10
+ <body>
11
+ <p>If you're not redirected, <a href="https://vectara-leaderboard.hf.space">click here</a>.</p>
12
+
13
+ <script>
14
+ // Immediate redirect for JS-enabled browsers
15
+ location.replace("https://vectara-leaderboard.hf.space");
16
+ </script>
17
+ </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  </html>