fdaudens HF staff commited on
Commit
695e204
โ€ข
1 Parent(s): dedcdf5

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +10 -5
index.html CHANGED
@@ -260,11 +260,15 @@
260
  <button onclick="toggleBrowserFullscreen(this.parentElement)" style="position: absolute; top: 10px; right: 10px; z-index: 10; padding: 8px; background: rgba(0,0,0,0.6); color: white; border: none; border-radius: 4px; cursor: pointer;">โ›ถ</button>
261
  <iframe src="https://aiworld.eu/embed/api/paper/hf_papers_stacked" allowfullscreen></iframe>
262
  </div>
 
263
  `,
264
  11: `
265
- <h2>Day 11</h2>
266
- <p>Wondering what tomorrowโ€™s visualization will be? Like the space to get notified when we reveal it ๐Ÿค—</p>
267
- <img src="/images/day3-teaser.png" style="width: 100%; margin: 20px 0;">
 
 
 
268
  `,
269
  12: `
270
  <h2>Day 12</h2>
@@ -351,6 +355,7 @@
351
  8: "๐Ÿ“ˆ<br>Average daily downloads",
352
  9: "๐ŸŽ„<br>NeurIPS Noel",
353
  10: "๐ŸŽ‚<br>The Great AI Bake-Off",
 
354
  // Add more custom labels as needed
355
  // 3: "Custom Text",
356
  // 4: "Another Label",
@@ -386,7 +391,7 @@
386
 
387
  // Handle card clicks
388
  const cards = document.querySelectorAll('.card');
389
- const activeDays = [1,2,3,4,5,6,7,8,9,10]; // Add the day numbers you want to highlight
390
 
391
  cards.forEach(card => {
392
  const day = parseInt(card.dataset.day);
@@ -434,4 +439,4 @@
434
  });
435
  </script>
436
  </body>
437
- </html>
 
260
  <button onclick="toggleBrowserFullscreen(this.parentElement)" style="position: absolute; top: 10px; right: 10px; z-index: 10; padding: 8px; background: rgba(0,0,0,0.6); color: white; border: none; border-radius: 4px; cursor: pointer;">โ›ถ</button>
261
  <iframe src="https://aiworld.eu/embed/api/paper/hf_papers_stacked" allowfullscreen></iframe>
262
  </div>
263
+
264
  `,
265
  11: `
266
+ <h2>Paper Trail: Top upvoted papers on the Hub</h2>
267
+ <p>This table presents the top most upvoted papers on HF, along with the top 20 presented at this year's NeurIPS.</p>
268
+ <div class="responsive-iframe-container">
269
+ <button onclick="toggleBrowserFullscreen(this.parentElement)" style="position: absolute; top: 10px; right: 10px; z-index: 10; padding: 8px; background: rgba(0,0,0,0.6); color: white; border: none; border-radius: 4px; cursor: pointer;">โ›ถ</button>
270
+ <iframe src="https://aiworld.eu/embed/api/paper/top-20-hf-papers-at-neurips" allowfullscreen></iframe>
271
+ </div>
272
  `,
273
  12: `
274
  <h2>Day 12</h2>
 
355
  8: "๐Ÿ“ˆ<br>Average daily downloads",
356
  9: "๐ŸŽ„<br>NeurIPS Noel",
357
  10: "๐ŸŽ‚<br>The Great AI Bake-Off",
358
+ 11: "๐Ÿ“„<br>Top upvoted papers on the Hub"
359
  // Add more custom labels as needed
360
  // 3: "Custom Text",
361
  // 4: "Another Label",
 
391
 
392
  // Handle card clicks
393
  const cards = document.querySelectorAll('.card');
394
+ const activeDays = [1,2,3,4,5,6,7,8,9,10,11]; // Add the day numbers you want to highlight
395
 
396
  cards.forEach(card => {
397
  const day = parseInt(card.dataset.day);
 
439
  });
440
  </script>
441
  </body>
442
+ </html>