Update index.html
Browse files- index.html +12 -6
index.html
CHANGED
|
@@ -179,7 +179,7 @@
|
|
| 179 |
<ul style="list-style-type: none; padding-left: 0;">
|
| 180 |
<li>✦ <a href="https://huggingface.co/posts/clem/703679306559358" style="color: inherit; text-decoration: underline;" target="_blank">Hugging Face</a></li>
|
| 181 |
<li>✦ <a href="https://x.com/ClementDelangue/status/1863576648253091934" style="color: inherit; text-decoration: underline;" target="_blank">X</a></li>
|
| 182 |
-
<li>✦ <a href="https://www.linkedin.com/
|
| 183 |
<li>✦ <a href="https://bsky.app/profile/clem.hf.co/post/3lcdceiv7vk2h" style="color: inherit; text-decoration: underline;" target="_blank">Bluesky</a></li>
|
| 184 |
</ul>
|
| 185 |
`,
|
|
@@ -193,13 +193,17 @@
|
|
| 193 |
</div>
|
| 194 |
`,
|
| 195 |
3: `
|
| 196 |
-
<h2>
|
| 197 |
-
<p>
|
| 198 |
-
<
|
|
|
|
|
|
|
|
|
|
| 199 |
`,
|
| 200 |
4: `
|
| 201 |
<h2>Day 4</h2>
|
| 202 |
-
<p>Like the space to
|
|
|
|
| 203 |
`,
|
| 204 |
5: `
|
| 205 |
<h2>Day 5</h2>
|
|
@@ -294,6 +298,7 @@
|
|
| 294 |
const cardLabels = {
|
| 295 |
1: "🔮<br>Clem's2025 predictions",
|
| 296 |
2: "❤️<br>Most liked & downloaded models",
|
|
|
|
| 297 |
// Add more custom labels as needed
|
| 298 |
// 3: "Custom Text",
|
| 299 |
// 4: "Another Label",
|
|
@@ -319,6 +324,7 @@
|
|
| 319 |
<div class="card-content">
|
| 320 |
${cardContents[i]}
|
| 321 |
<div style="margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee;">
|
|
|
|
| 322 |
<p style="font-size: 0.8em;">🔗 Share this card: <a href="${getCardLink(i)}" onclick="event.stopPropagation();">${getCardLink(i)}</a></p>
|
| 323 |
</div>
|
| 324 |
</div>
|
|
@@ -328,7 +334,7 @@
|
|
| 328 |
|
| 329 |
// Handle card clicks
|
| 330 |
const cards = document.querySelectorAll('.card');
|
| 331 |
-
const activeDays = [1,2]; // Add the day numbers you want to highlight
|
| 332 |
|
| 333 |
cards.forEach(card => {
|
| 334 |
const day = parseInt(card.dataset.day);
|
|
|
|
| 179 |
<ul style="list-style-type: none; padding-left: 0;">
|
| 180 |
<li>✦ <a href="https://huggingface.co/posts/clem/703679306559358" style="color: inherit; text-decoration: underline;" target="_blank">Hugging Face</a></li>
|
| 181 |
<li>✦ <a href="https://x.com/ClementDelangue/status/1863576648253091934" style="color: inherit; text-decoration: underline;" target="_blank">X</a></li>
|
| 182 |
+
<li>✦ <a href="https://www.linkedin.com/in/clementdelangue/" style="color: inherit; text-decoration: underline;" target="_blank">LinkedIn</a></li>
|
| 183 |
<li>✦ <a href="https://bsky.app/profile/clem.hf.co/post/3lcdceiv7vk2h" style="color: inherit; text-decoration: underline;" target="_blank">Bluesky</a></li>
|
| 184 |
</ul>
|
| 185 |
`,
|
|
|
|
| 193 |
</div>
|
| 194 |
`,
|
| 195 |
3: `
|
| 196 |
+
<h2>Fast & Furious model releases</h2>
|
| 197 |
+
<p>This race chart shows model development over the last 48 weeks, with Meta (US), Stability (UK) and Black Forest Labs (GER) leading in quantity.</p>
|
| 198 |
+
<div class="responsive-iframe-container">
|
| 199 |
+
<button onclick="toggleFullscreen(this.nextElementSibling)" 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>
|
| 200 |
+
<iframe src="https://aiworld.eu/embed/model/author/racechart" allowfullscreen></iframe>
|
| 201 |
+
</div>
|
| 202 |
`,
|
| 203 |
4: `
|
| 204 |
<h2>Day 4</h2>
|
| 205 |
+
<p>Wondering what tomorrow’s visualization will be? Like the space to get notified when we reveal it 🤗</p>
|
| 206 |
+
<img src="/images/day3-teaser.png" style="width: 100%; margin: 20px 0;">
|
| 207 |
`,
|
| 208 |
5: `
|
| 209 |
<h2>Day 5</h2>
|
|
|
|
| 298 |
const cardLabels = {
|
| 299 |
1: "🔮<br>Clem's2025 predictions",
|
| 300 |
2: "❤️<br>Most liked & downloaded models",
|
| 301 |
+
3: "🏎️<br>Fast & Furious model releases",
|
| 302 |
// Add more custom labels as needed
|
| 303 |
// 3: "Custom Text",
|
| 304 |
// 4: "Another Label",
|
|
|
|
| 324 |
<div class="card-content">
|
| 325 |
${cardContents[i]}
|
| 326 |
<div style="margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee;">
|
| 327 |
+
<p><em style="font-size: 0.8em;">💡Tip: Click the small square icon in the top right corner to access full screen view!</em></p>
|
| 328 |
<p style="font-size: 0.8em;">🔗 Share this card: <a href="${getCardLink(i)}" onclick="event.stopPropagation();">${getCardLink(i)}</a></p>
|
| 329 |
</div>
|
| 330 |
</div>
|
|
|
|
| 334 |
|
| 335 |
// Handle card clicks
|
| 336 |
const cards = document.querySelectorAll('.card');
|
| 337 |
+
const activeDays = [1,2,3]; // Add the day numbers you want to highlight
|
| 338 |
|
| 339 |
cards.forEach(card => {
|
| 340 |
const day = parseInt(card.dataset.day);
|