Skip to content

Commit 0f4cbbf

Browse files
Aditya PutatundaAditya Putatunda
authored andcommitted
slides
1 parent eee9cf0 commit 0f4cbbf

7 files changed

Lines changed: 15 additions & 7 deletions

content.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@
297297
{
298298
"name": "AMaRaNTA",
299299
"url": "https://github.com/AMaRaNTA-code/AMaRaNTA",
300-
"description": "AiiDA-based high-throughput workflow for automated calculation of magnetic exchange parameters in 2D magnets.",
300+
"description": "AiiDA-based high-throughput workflow for automated calculation of magnetic exchange parameters in complex materials.",
301301
"tags": [
302302
"Python",
303303
"AiiDA",
@@ -366,6 +366,7 @@
366366
{
367367
"title": "Magnetoelectric control in type-I multiferroics via domain walls",
368368
"type": "talk",
369+
"slides": "slides/DPG_Regensburg_2025.pdf",
369370
"venues": [
370371
{
371372
"date": "Jul 2025",
@@ -393,7 +394,8 @@
393394
"date": "Aug 2022",
394395
"title": "Twisted CrI₃ bilayer",
395396
"venue": "Psi-K Conference, Lausanne",
396-
"type": "poster"
397+
"type": "poster",
398+
"slides": "slides/2022posterLausanne.pdf"
397399
},
398400
{
399401
"date": "Jul 2022",
@@ -404,19 +406,22 @@
404406
"date": "Mar 2020",
405407
"title": "APS March Meeting",
406408
"venue": "Denver — canceled (COVID-19)",
407-
"type": "talk"
409+
"type": "talk",
410+
"slides": "slides/March_Meeting_2020.pdf"
408411
},
409412
{
410413
"date": "Mar 2019",
411414
"title": "Lorenz number estimates from the Seebeck coefficient",
412415
"venue": "APS March Meeting, Boston",
413-
"type": "talk"
416+
"type": "talk",
417+
"slides": "slides/APS_Lorenz_number_Boston_2019.pdf"
414418
},
415419
{
416420
"date": "Mar 2018",
417421
"title": "Thermoelectric properties of NaSbSe₂",
418422
"venue": "APS March Meeting, Los Angeles",
419-
"type": "talk"
423+
"type": "talk",
424+
"slides": "slides/NaSbSe2_March_Meeting_2018.pdf"
420425
},
421426
{
422427
"date": "2014",

index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,8 @@
147147
.talk-type-poster { background: var(--tag-multiferroics-bg); color: var(--tag-multiferroics); }
148148
.talk-type-workshop { background: var(--tag-methods-bg); color: var(--tag-methods); }
149149
.talk-type-other { background: var(--border-light); color: var(--text-mid); }
150+
.slides-link { color: var(--accent); text-decoration: none; font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
151+
.slides-link:hover { border-bottom-color: var(--accent); }
150152

151153
/* Misc page sections */
152154
.misc-page { max-width: 1400px; margin: 0 auto; padding: 0 3rem 3rem; }
@@ -437,9 +439,10 @@ <h2>${sec.title}</h2>
437439
badge = ` <span class="talk-type ${typeClass}">${typeKey}</span>`;
438440
}
439441
const cls = 'talk-item' + (hidden ? ' hidden-extra' : '');
442+
const slidesHTML = url => url ? ` · <a href="${url}" target="_blank" class="slides-link">Slides ↓</a>` : '';
440443
if (t.venues) {
441444
const venueLines = t.venues.map(v =>
442-
`<div class="talk-venue-line"><span class="talk-venue-date">${v.date}</span> · ${v.venue}</div>`
445+
`<div class="talk-venue-line"><span class="talk-venue-date">${v.date}</span> · ${v.venue}${slidesHTML(v.slides || t.slides)}</div>`
443446
).join('');
444447
return `<div class="${cls}" style="animation-delay:${0.05 + i * 0.02}s">
445448
<div class="talk-date">${t.venues[0].date}</div>
@@ -448,7 +451,7 @@ <h2>${sec.title}</h2>
448451
}
449452
return `<div class="${cls}" style="animation-delay:${0.05 + i * 0.02}s">
450453
<div class="talk-date">${t.date}</div>
451-
<div><div class="talk-title">${t.title}${badge}</div><div class="talk-venue">${t.venue}</div></div>
454+
<div><div class="talk-title">${t.title}${badge}</div><div class="talk-venue">${t.venue}${slidesHTML(t.slides)}</div></div>
452455
</div>`;
453456
};
454457

slides/2022posterLausanne.pdf

962 KB
Binary file not shown.
1.23 MB
Binary file not shown.

slides/DPG_Regensburg_2025.pdf

638 KB
Binary file not shown.

slides/March_Meeting_2020.pdf

1.36 MB
Binary file not shown.
1.2 MB
Binary file not shown.

0 commit comments

Comments
 (0)